Commit c3f673a 1 parent b11eeb6 commit c3f673a Copy full SHA for c3f673a
File tree 7 files changed +21
-18
lines changed
playground/src/main/kotlin/team/duckie/quackquack/playground
ui-components-benchmark-app/src/main/kotlin/team/duckie/quackquack/ui/benchmark/app
7 files changed +21
-18
lines changed Original file line number Diff line number Diff line change 1
1
name-major=1
2
2
name-minor=1
3
- name-patch=1
4
- code=11
3
+ name-patch=2
4
+ code=12
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ import team.duckie.quackquack.playground.base.fontScale
40
40
import team.duckie.quackquack.playground.base.showComponentBounds
41
41
import team.duckie.quackquack.playground.realworld.BottomSheetPlayground
42
42
import team.duckie.quackquack.playground.realworld.ButtonPlayground
43
- import team.duckie.quackquack.playground.realworld.EtcPlayground
44
43
import team.duckie.quackquack.playground.realworld.DrawerPlayground
44
+ import team.duckie.quackquack.playground.realworld.EtcPlayground
45
45
import team.duckie.quackquack.playground.realworld.FabPlayground
46
46
import team.duckie.quackquack.playground.realworld.NavigationPlayground
47
47
import team.duckie.quackquack.playground.realworld.SelectableImagePlayground
@@ -164,7 +164,10 @@ private fun PlaygroundDemo() {
164
164
minimumValue = 0 ,
165
165
)
166
166
fontScale = (
167
- 1f
167
+ preference[PreferenceConfigs .FontScaleKey ]
168
+ ? : 1f
169
+ ).coerceAtLeast(
170
+ minimumValue = 1f ,
168
171
)
169
172
showComponentBounds =
170
173
preference[PreferenceConfigs .ShowComponentBounds ] ? : showComponentBounds
Original file line number Diff line number Diff line change 1
- major=0
2
- minor=7
3
- patch=0
1
+ major=1
2
+ minor=0
3
+ patch=1
Original file line number Diff line number Diff line change 1
- major=0
2
- minor=7
3
- patch=0
1
+ major=1
2
+ minor=0
3
+ patch=1
Original file line number Diff line number Diff line change 1
- major=0
2
- minor=1
3
- patch=0
1
+ major=1
2
+ minor=0
3
+ patch=1
Original file line number Diff line number Diff line change 1
- major=0
2
- minor=9
3
- patch=0
1
+ major=1
2
+ minor=0
3
+ patch=1
Original file line number Diff line number Diff line change @@ -26,9 +26,8 @@ import team.duckie.quackquack.ui.component.QuackBody1
26
26
import team.duckie.quackquack.ui.component.QuackBody2
27
27
import team.duckie.quackquack.ui.component.QuackBody3
28
28
import team.duckie.quackquack.ui.component.QuackBottomNavigation
29
- import team.duckie.quackquack.ui.component.QuackBottomSheet
30
- import team.duckie.quackquack.ui.component.QuackDropDown
31
29
import team.duckie.quackquack.ui.component.QuackDivider
30
+ import team.duckie.quackquack.ui.component.QuackDropDown
32
31
import team.duckie.quackquack.ui.component.QuackFab
33
32
import team.duckie.quackquack.ui.component.QuackGrayscaleTag
34
33
import team.duckie.quackquack.ui.component.QuackHeadLine1
@@ -394,6 +393,7 @@ inline fun QuackTextStyleBenchmark() {
394
393
QuackTextStyle .Title2
395
394
}
396
395
396
+ @Suppress(" EmptyFunctionBlock" ) // TODO
397
397
@Composable
398
398
inline fun QuackBottomSheetBenchmark () {
399
399
}
You can’t perform that action at this time.
0 commit comments