You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 3, 2022. It is now read-only.
Remixer is a framework to iterate quickly on UI changes by allowing you to adjust UI variables without needing to rebuild (or even restart) your app. You can adjust Numbers, Colors, Booleans, and Strings. To see it in action check out the example app.
If you are interested in using Remixer in another platform, you may want to check out the iOS and Android repos. With any of the three platforms you can use the Remote Controller to change the variables from a web dashboard.
Add your Firebase account credentials to your app, and forward the param to the remixer.start() method.
// Replace with your project's Firebase info.varconfig={apiKey: "<API_KEY>",authDomain: "<PROJECT_ID>.firebaseapp.com",databaseURL: "https://<DATABASE_NAME>.firebaseio.com",};// Pass the config params to Remixer start method.remixer.start(config);
You can then toggle on/off sharing to the remote controller from within the Remixer overlay.
5. Add variables.
Now you can add any desired variables and use the callback method to assign the selectedValue property.
// Add a boolean variable to generate a toggle switch in the overlay.remixer.addBooleanVariable("show",true,function(variable){document.getElementById("box").style.display=variable.selectedValue ? "block" : "none";});
Yes, the material-foundation organization is one of Google's new homes for tools and frameworks related to our Material Design system. Please check out our blog post Design is Never Done for more information regarding Material Design and how Remixer integrates with the system.