I want to know what should be the common strategy ...
# compose-desktop
j
I want to know what should be the common strategy to build a custom design for Compose. So I have a few questions: • Should it depends on Material Theme? Or should it use the basics widgets without build it on top of another theme. • If it is build on top of Material Theme, should it use prefixes for the widgets to let the user decide what to use? (sample: 
Button
 uses 
MaterialTheme
CustomButton
 uses 
CustomTheme
• If it is build on top of Material Theme, should it hide the material theme and widgets so the 
Custom
 prefix should not be used? • If it is build on top of Material Theme, and it hides the material theme, what about an use case where the user add both libraries, material and custom? should the user play with the imports?
Copy code
import androidx.compose.material.Button as MaterialButton
import some.custom.package.Button as CustomButton