-
-
Notifications
You must be signed in to change notification settings - Fork 371
/
Copy pathDarkModeActivity.kt
485 lines (461 loc) · 23.1 KB
/
DarkModeActivity.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
package com.example.jetpackcompose.theme
import android.os.Bundle
import androidx.activity.compose.setContent
import androidx.appcompat.app.AppCompatActivity
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.fillMaxHeight
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.material.Card
import androidx.compose.material.DrawerValue
import androidx.compose.material.Icon
import androidx.compose.material.IconButton
import androidx.compose.material.MaterialTheme
import androidx.compose.material.ModalDrawer
import androidx.compose.material.Surface
import androidx.compose.material.Switch
import androidx.compose.material.Text
import androidx.compose.material.TopAppBar
import androidx.compose.material.Typography
import androidx.compose.material.darkColors
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Menu
import androidx.compose.material.lightColors
import androidx.compose.material.rememberDrawerState
import androidx.compose.runtime.Composable
import androidx.compose.runtime.MutableState
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.rememberCoroutineScope
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.text.TextStyle
import androidx.compose.ui.text.font.FontFamily
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextAlign.Companion.Justify
import androidx.compose.ui.text.style.TextIndent
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import com.example.jetpackcompose.core.LOREM_IPSUM_1
import com.example.jetpackcompose.core.LOREM_IPSUM_2
import com.example.jetpackcompose.core.LOREM_IPSUM_3
import kotlinx.coroutines.launch
class DarkModeActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
// This is an extension function of Activity that sets the @Composable function that's
// passed to it as the root view of the activity. This is meant to replace the .xml file
// that we would typically set using the setContent(R.id.xml_file) method. The setContent
// block defines the activity's layout.
setContent {
// Reacting to state changes is the core behavior of Compose. You will notice a couple new
// keywords that are compose related - remember & mutableStateOf.remember{} is a helper
// composable that calculates the value passed to it only during the first composition. It then
// returns the same value for every subsequent composition. Next, you can think of
// mutableStateOf as an observable value where updates to this variable will redraw all
// the composable functions that access it. We don't need to explicitly subscribe at all. Any
// composable that reads its value will be recomposed any time the value
// changes. This ensures that only the composables that depend on this will be redraw while the
// rest remain unchanged. This ensures efficiency and is a performance optimization. It
// is inspired from existing frameworks like React.
val enableDarkMode = remember { mutableStateOf( false) }
CustomTheme(enableDarkMode) {
ThemedDrawerAppComponent(enableDarkMode)
}
}
}
}
// We represent a Composable function by annotating it with the @Composable annotation. Composable
// functions can only be called from within the scope of other composable functions. We should
// think of composable functions to be similar to lego blocks - each composable function is in turn
// built up of smaller composable functions.
@Composable
fun CustomTheme(enableDarkMode: MutableState<Boolean>, children: @Composable() () -> Unit) {
// lightColors is a default implementation of the ColorPalette from the MaterialDesign
// specification https://material.io/design/color/the-color-system.html#color-theme-creation.
// for easy use. In this case, I'm just showing an example of how you can
// override any of the values that are a part of the Palette even though I'm just using the
// default values itself.
val lightColors = lightColors(
primary = Color(0xFF6200EE),
primaryVariant = Color(0xFF3700B3),
onPrimary = Color(0xFFFFFFFF),
secondary = Color(0xFF03DAC5),
secondaryVariant = Color(0xFF0000FF),
onSecondary = Color(0xFF000000),
background = Color(0xFFFFFFFF),
onBackground = Color(0xFF000000),
surface = Color(0xFFFFFFFF),
onSurface = Color(0xFF000000),
error = Color(0xFFB00020),
onError = Color(0xFFFFFFFF)
)
// darkColors is a default implementation of dark mode ColorPalette from the
// Material Design specification
// https://material.io/design/color/the-color-system.html#color-theme-creation.
val darkColors = darkColors()
val colors = if (enableDarkMode.value) darkColors else lightColors
// Data class holding typography definitions as defined by the
// Material typography specification
// https://material.io/design/typography/the-type-system.html#type-scale
val typography = Typography(
body1 = TextStyle(
fontFamily = FontFamily.Serif,
fontWeight = FontWeight.Normal,
fontSize = 20.sp,
textIndent = TextIndent(firstLine = 16.sp),
textAlign = Justify
)
)
// A MaterialTheme comprises of colors, typography and the child composables that are going
// to make use of this styling.
MaterialTheme(colors = colors, content = children, typography = typography)
}
// We represent a Composable function by annotating it with the @Composable annotation. Composable
// functions can only be called from within the scope of other composable functions. We should
// think of composable functions to be similar to lego blocks - each composable function is in turn
// built up of smaller composable functions.
@Composable
fun ThemedDrawerAppComponent(enableDarkMode: MutableState<Boolean>) {
val drawerState = rememberDrawerState(initialValue = DrawerValue.Closed)
// Reacting to state changes is the core behavior of Compose. You will notice a couple new
// keywords that are compose related - remember & mutableStateOf.remember{} is a helper
// composable that calculates the value passed to it only during the first composition. It then
// returns the same value for every subsequent composition. Next, you can think of
// mutableStateOf as an observable value where updates to this variable will redraw all
// the composable functions that access it. We don't need to explicitly subscribe at all. Any
// composable that reads its value will be recomposed any time the value
// changes. This ensures that only the composables that depend on this will be redraw while the
// rest remain unchanged. This ensures efficiency and is a performance optimization. It
// is inspired from existing frameworks like React.
val currentScreen = remember { mutableStateOf(ThemedDrawerAppScreen.Screen1) }
val scope = rememberCoroutineScope()
// ModalDrawer is a pre-defined composable used to provide access to destinations in
// the app. It's a common pattern used across multiple apps where you see a drawer on the
// left of the screen.
ModalDrawer(
// Drawer state to denote whether the drawer should be open or closed.
drawerState = drawerState,
gesturesEnabled = drawerState.isOpen,
drawerContent = {
//drawerContent takes a composable to represent the view/layout to display when the
// drawer is open.
ThemedDrawerContentComponent(
currentScreen = currentScreen,
closeDrawer = { scope.launch { drawerState.close() } }
)
},
content = {
// bodyContent takes a composable to represent the view/layout to display on the
// screen. We select the appropriate screen based on the value stored in currentScreen.
ThemedBodyContentComponent(
currentScreen = currentScreen.value,
enableDarkMode = enableDarkMode,
openDrawer = {
scope.launch { drawerState.open() }
}
)
}
)
}
@Composable
fun ThemedDrawerContentComponent(
currentScreen: MutableState<ThemedDrawerAppScreen>,
closeDrawer: () -> Unit
) {
// Column is a composable that places its children in a vertical sequence. You
// can think of it similar to a LinearLayout with the vertical orientation. In addition, we
// also provide the column with a modifier.
// You can think of Modifiers as implementations of the decorators pattern that are used to
// modify the composable that its applied to. In this example, we configure the Column to
// occupy the entire available height using the Modifier.fillMaxHeight() modifier.
// In addition, we use the LayoutOffset modifier to take into account the appbar that sits on
// top of the drawer content. So we add an offset in the y direction. Alternatively, we can
// use the Scaffold composable that takes care of placing the drawer content in the correct
// position. Look at [FixedActionButtonActivity] to see an example.
Column(modifier = Modifier.fillMaxHeight()) {
// Column with clickable modifier wraps the child composable and enables it to react to a
// click through the onClick callback similar to the onClick listener that we are accustomed
// to on Android.
// Here, we just update the currentScreen variable to hold the appropriate value based on
// the row that is clicked i.e if the first row is clicked, we set the value of
// currentScreen to DrawerAppScreen.Screen1, when second row is clicked we set it to
// DrawerAppScreen.Screen2 and so on and so forth.
Column(
modifier = Modifier.clickable(onClick = {
currentScreen.value = ThemedDrawerAppScreen.Screen1
// We also close the drawer when an option from the drawer is selected.
closeDrawer()
}), content = {
// Text is a predefined composable that does exactly what you'd expect it to -
// display text on the screen. It allows you to customize its appearance using
// the style property.
Text(text = ThemedDrawerAppScreen.Screen1.name, modifier = Modifier.padding(16.dp))
}
)
Column(
modifier = Modifier.clickable(
onClick = {
currentScreen.value = ThemedDrawerAppScreen.Screen2
closeDrawer()
}
), content = {
Text(text = ThemedDrawerAppScreen.Screen2.name, modifier = Modifier.padding(16.dp))
}
)
Column(
modifier = Modifier.clickable {
currentScreen.value = ThemedDrawerAppScreen.Screen3
closeDrawer()
},
content = {
Text(text = ThemedDrawerAppScreen.Screen3.name, modifier = Modifier.padding(16.dp))
}
)
}
}
/**
* Passed the corresponding screen composable based on the current screen that's active.
*/
@Composable
fun ThemedBodyContentComponent(
currentScreen: ThemedDrawerAppScreen,
enableDarkMode: MutableState<Boolean>,
openDrawer: () -> Unit
) {
val onCheckChanged = { _: Boolean ->
enableDarkMode.value = !enableDarkMode.value
}
when (currentScreen) {
ThemedDrawerAppScreen.Screen1 -> ThemedScreen1Component(
enableDarkMode.value,
openDrawer,
onCheckChanged
)
ThemedDrawerAppScreen.Screen2 -> ThemedScreen2Component(
enableDarkMode.value,
openDrawer,
onCheckChanged
)
ThemedDrawerAppScreen.Screen3 -> ThemedScreen3Component(
enableDarkMode.value,
openDrawer,
onCheckChanged
)
}
}
// We represent a Composable function by annotating it with the @Composable annotation. Composable
// functions can only be called from within the scope of other composable functions. We should
// think of composable functions to be similar to lego blocks - each composable function is in turn
// built up of smaller composable functions.
@Composable
fun ThemedScreen1Component(
enableDarkMode: Boolean,
openDrawer: () -> Unit,
onCheckChanged: (Boolean) -> Unit
) {
// Column is a composable that places its children in a vertical sequence. You
// can think of it similar to a LinearLayout with the vertical orientation. In addition, we
// also provide the column with a modifier.
// You can think of Modifiers as implementations of the decorators pattern that are used to
// modify the composable that its applied to. In this example, we configure the Column to
// occupy the entire available width & height using the Modifier.fillMaxSize() modifier.
Column(modifier = Modifier.fillMaxSize()) {
// TopAppBar is a pre-defined composable that's placed at the top of the screen. It has
// slots for a title, navigation icon, and actions. Also known as the action bar.
TopAppBar(
// The Text composable is pre-defined by the Compose UI library; you can use this
// composable to render text on the screen
title = { Text("Screen 1") },
navigationIcon = {
IconButton(onClick = openDrawer) {
Icon(imageVector = Icons.Filled.Menu, contentDescription = "Menu")
}
}
)
// Card composable is a predefined composable that is meant to represent the card surface as
// specified by the Material Design specification. We also configure it to have rounded
// corners and apply a modifier.
Card(
modifier = Modifier.fillMaxWidth(),
backgroundColor = MaterialTheme.colors.surface
) {
// Row is a composable that places its children in a horizontal sequence. You
// can think of it similar to a LinearLayout with the horizontal orientation.
Row(modifier = Modifier.padding(16.dp)) {
// A pre-defined composable that's capable of rendering a switch. It honors the Material
// Design specification.
Switch(checked = enableDarkMode, onCheckedChange = onCheckChanged)
Text(
text = "Enable Dark Mode",
style = MaterialTheme.typography.body1.copy(color = MaterialTheme.colors.onSurface),
modifier = Modifier.padding(start = 8.dp)
)
}
}
// Surface is a composable provided to fulfill the needs of the "Surface" metaphor from the
// Material Design specification. It's generally used to change the background color, add
// elevation, clip or add background shape to its children composables.
Surface(modifier = Modifier.weight(1f), color = MaterialTheme.colors.surface) {
Text(
text = LOREM_IPSUM_1,
style = MaterialTheme.typography.body1.copy(color = MaterialTheme.colors.onSurface),
modifier = Modifier.padding(16.dp)
)
}
}
}
// We represent a Composable function by annotating it with the @Composable annotation. Composable
// functions can only be called from within the scope of other composable functions. We should
// think of composable functions to be similar to lego blocks - each composable function is in turn
// built up of smaller composable functions.
@Composable
fun ThemedScreen2Component(
enableDarkMode: Boolean,
openDrawer: () -> Unit,
onCheckChanged: (Boolean) -> Unit
) {
// Column is a composable that places its children in a vertical sequence. You
// can think of it similar to a LinearLayout with the vertical orientation. In addition, we
// also provide the column with a modifier.
// You can think of Modifiers as implementations of the decorators pattern that are used to
// modify the composable that its applied to. In this example, we configure the Column to
// occupy the entire available width & height using the Modifier.fillMaxSize() modifier.
Column(modifier = Modifier.fillMaxSize()) {
// TopAppBar is a pre-defined composable that's placed at the top of the screen. It has
// slots for a title, navigation icon, and actions. Also known as the action bar.
TopAppBar(
// The Text composable is pre-defined by the Compose UI library; you can use this
// composable to render text on the screen
title = { Text("Screen 2") },
navigationIcon = {
IconButton(onClick = openDrawer) {
Icon(imageVector = Icons.Filled.Menu, contentDescription = "Menu")
}
}
)
// Card composable is a predefined composable that is meant to represent the card surface as
// specified by the Material Design specification. We also configure it to have rounded
// corners and apply a modifier.
Card(
modifier = Modifier.fillMaxWidth(),
backgroundColor = MaterialTheme.colors.surface
) {
// Row is a composable that places its children in a horizontal sequence. You
// can think of it similar to a LinearLayout with the horizontal orientation.
Row(modifier = Modifier.padding(16.dp)) {
// A pre-defined composable that's capable of rendering a switch. It honors the Material
// Design specification.
Switch(checked = enableDarkMode, onCheckedChange = onCheckChanged)
Text(
text = "Enable Dark Mode", style = MaterialTheme.typography.body1,
modifier = Modifier.padding(start = 8.dp)
)
}
}
// Surface is a composable provided to fulfill the needs of the "Surface" metaphor from the
// Material Design specification. It's generally used to change the background color, add
// elevation, clip or add background shape to its children composables.
Surface(modifier = Modifier.weight(1f)) {
Text(
text = LOREM_IPSUM_2, style = MaterialTheme.typography.body1,
modifier = Modifier.padding(16.dp)
)
}
}
}
// We represent a Composable function by annotating it with the @Composable annotation. Composable
// functions can only be called from within the scope of other composable functions. We should
// think of composable functions to be similar to lego blocks - each composable function is in turn
// built up of smaller composable functions.
@Composable
fun ThemedScreen3Component(
enableDarkMode: Boolean,
openDrawer: () -> Unit,
onCheckChanged: (Boolean) -> Unit
) {
// Column is a composable that places its children in a vertical sequence. You
// can think of it similar to a LinearLayout with the vertical orientation. In addition, we
// also provide the column with a modifier.
// You can think of Modifiers as implementations of the decorators pattern that are used to
// modify the composable that its applied to. In this example, we configure the Column to
// occupy the entire available width & height using the Modifier.fillMaxSize() modifier.
Column(modifier = Modifier.fillMaxSize()) {
// TopAppBar is a pre-defined composable that's placed at the top of the screen. It has
// slots for a title, navigation icon, and actions. Also known as the action bar.
TopAppBar(
// The Text composable is pre-defined by the Compose UI library; you can use this
// composable to render text on the screen
title = { Text("Screen 3") },
navigationIcon = {
IconButton(onClick = openDrawer) {
Icon(imageVector = Icons.Filled.Menu, contentDescription = "Menu")
}
}
)
// Card composable is a predefined composable that is meant to represent the card surface as
// specified by the Material Design specification. We also configure it to have rounded
// corners and apply a modifier.
Card(
modifier = Modifier.fillMaxWidth(),
backgroundColor = MaterialTheme.colors.surface
) {
// Row is a composable that places its children in a horizontal sequence. You
// can think of it similar to a LinearLayout with the horizontal orientation.
Row(modifier = Modifier.padding(16.dp)) {
// A pre-defined composable that's capable of rendering a switch. It honors the Material
// Design specification.
Switch(checked = enableDarkMode, onCheckedChange = onCheckChanged)
Text(
text = "Enable Dark Mode", style = MaterialTheme.typography.body1,
modifier = Modifier.padding(start = 8.dp)
)
}
}
// Surface is a composable provided to fulfill the needs of the "Surface" metaphor from the
// Material Design specification. It's generally used to change the background color, add
// elevation, clip or add background shape to its children composables.
Surface(modifier = Modifier.weight(1f)) {
Text(
text = LOREM_IPSUM_3, style = MaterialTheme.typography.body1,
modifier = Modifier.padding(16.dp)
)
}
}
}
enum class ThemedDrawerAppScreen {
Screen1,
Screen2,
Screen3
}
/**
* Android Studio lets you preview your composable functions within the IDE itself, instead of
* needing to download the app to an Android device or emulator. This is a fantastic feature as you
* can preview all your custom components(read composable functions) from the comforts of the IDE.
* The main restriction is, the composable function must not take any parameters. If your composable
* function requires a parameter, you can simply wrap your component inside another composable
* function that doesn't take any parameters and call your composable function with the appropriate
* params. Also, don't forget to annotate it with @Preview & @Composable annotations.
*/
@Preview
@Composable
fun CustomThemeLightPreview() {
CustomTheme(enableDarkMode = remember { mutableStateOf(false) }) {
Card {
Text("Preview Text", modifier = Modifier.padding(32.dp))
}
}
}
@Preview
@Composable
fun CustomThemeDarkPreview() {
CustomTheme(enableDarkMode = remember { mutableStateOf(true) }) {
Card {
Text("Preview Text", modifier = Modifier.padding(32.dp))
}
}
}