python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Set all text style changes in one place in Compose UI similar to styles.xml
Previously you could define all of your style changes as a single style in XML which was really convenient especially if you had a lot of different styles. The project I'm currently working on has 50+...
smoothoperator
Votes: 0
Answers: 3
Style are not applied in Kotlin
I have created a button style defines in the themes.xml as below:
<style name="MyAppTheme.Button" parent="Widget.AppCompat.Button.Colored">
<item name="an...
Seb
Votes: 0
Answers: 2
MODE_NIGHT_FOLLOW_SYSTEM not working after MODE_NIGHT_YES
I have the next code to force dark mode depending the store of the user.
if (storeProvider.shouldForceDarkMode) {
appProvider.theme = AppProvider.AppTheme.DARK
AppCompatDelegate.setDe...
Rubearen
Votes: 0
Answers: 0
Android change Dialog background color from app settings via styles
I want to change default Dialog background color of my PreferenceActivity (Dialog that opens where we choose option from list in settings). Now the background of Dialog is always white although I chan...
Qbi
Votes: 0
Answers: 1