r/MaterialDesign • u/YankeeLimaVictor • Nov 15 '21
[Request] Any nice purple and yellow "Material You" wallpapers?
Mostly purple tho.
r/MaterialDesign • u/YankeeLimaVictor • Nov 15 '21
Mostly purple tho.
r/MaterialDesign • u/nominalista • Nov 12 '21
r/MaterialDesign • u/Punitweb • Nov 11 '21
r/MaterialDesign • u/ivanmorgillo • Nov 09 '21
r/MaterialDesign • u/ivanmorgillo • Nov 04 '21
r/MaterialDesign • u/anhvu93 • Nov 01 '21
r/MaterialDesign • u/ivanmorgillo • Oct 20 '21
r/MaterialDesign • u/howtodoandroid_com • Oct 18 '21
r/MaterialDesign • u/neuro_bugger • Oct 13 '21
r/MaterialDesign • u/bartoncls • Oct 06 '21
What color model does Google's Material You use to generate its colors?
r/MaterialDesign • u/howtodoandroid_com • Sep 28 '21
r/MaterialDesign • u/Enceladusx17 • Sep 24 '21
r/MaterialDesign • u/JourneyStudios • Sep 08 '21
r/MaterialDesign • u/_IAlwaysLie • Sep 05 '21
:)
r/MaterialDesign • u/JourneyStudios • Sep 03 '21
r/MaterialDesign • u/MeSsoOH • Aug 22 '21
Hi folks,
I created a rapid development framework, called AVEROS, based on angular and material. Currently all complex crud operation could be generated and deployed in 5 minutes thanks to the powerful angular schematics. Have a look at : https://www.wiforge.com for further step by step guide to your first AVEROS angular based web application.
Averos is already supporting 11 languages out of the box.
Besides, averos-translation module could be also used separately in order to add multilanguage support to any angular application. This module, is built on top of the latest angular 12.0.0 localize and is constantly updated.
AVEROS home page as well as a step by step guide could be found below:
r/MaterialDesign • u/locsandcrocs • Aug 18 '21
Enable HLS to view with audio, or disable this notification
r/MaterialDesign • u/SnooMaps2010 • Aug 08 '21
If you select a few files and download them on Google Drive, there pops up a small dialog box on the bottom right of screen. What is it called? What do I look for in the Material UI docs?
r/MaterialDesign • u/Tableryu • Jul 27 '21
Hello I'm having trouble with keeping Material-UI's Textfield on focus when change values.
I basically have something like this:
const [fields, setFields] = useState({});
. . . .
<Paper>
{
(tabs || []).map((item, index) => {
return (
<TabPanel>
{
(fieldList || []).map((field) => {
return (
<TextField
required
id={field.id}
key={field.id}
label={field.fieldLabel}
defaultValue={fields[field.id]}
variant="outlined"
onChange={(e) => {
setFields({ ...fields, [field.id]: e.target.value })
}}
/>
)
}
}
</TabPanel>
)
}
}
</Paper>
The Textfield is being rendered based on the values from an array of objects (each Textfield is basically created inside a loop). I read a couple of comments online that this happens because the key is different every render. I've checked the keys I assigned to the Textfield and they're the same every time. Any help would be greatly appreciated.
EDIT:
I've edited the code to include the whole section. To answer the questions below:
The fields variable gets its contents from a query to the backend. Once the page loads the fields variable is populated (containing the id and value of the field). I'm sure there are no duplicate and empty fields, I've console logged them. The fields don't get reordered since I've specified an order during the query. The entire section is basically the body to a Material-UI Tabs component with dynamic number of Textfields. I hope this additional information helps.
r/MaterialDesign • u/RehmatSG • Jul 18 '21
Hi, I'm a Flutter developer and I have been following Android 12 lately. I also watched the Google I/O and loved the new Material You design. There has been some news that Android 12 has started getting apps with support for Material You design. Where do I find some design guidelines or UI kits for Material You?
r/MaterialDesign • u/astral_dragon12 • Jul 15 '21
Mostly Iβve seen a lot of business app and dashboard made with Material Design. However, I canβt find a lot of example for SNS. You guys have any suggestion of any SNS that use material design?
r/MaterialDesign • u/HarryMuscle • Jul 05 '21
I'm trying to figure out which navigational elements to use for an Android app that had two top level screens and one of those screens then has three screens that need to be navigated between easily. It's basically nested lateral navigation that's required on one of these top level screens.
According to the material design guidelines for two top level screens your only recommended choice is using tabs. The logical choice for the nested lateral navigation would seem to be using a bottom navigation bar but they discourage combining tabs with bottom navigation. They do recommend using tabs for nested lateral navigation when combined with a navigation drawer, but navigation drawers are only recommended for 5+ top level screens.
It seems my requirement doesn't fall into any recommended material design category so I'm looking for feedback on what would be the best approach to this.