Skip to content

Commit ece3297

Browse files
committed
Fix screen after rebase
1 parent 8d6a050 commit ece3297

File tree

1 file changed

+13
-21
lines changed

1 file changed

+13
-21
lines changed

app/src/main/java/com/orange/ouds/app/ui/components/coloredbackground/ColoredBackgroundDemoScreen.kt

+13-21
Original file line numberDiff line numberDiff line change
@@ -70,29 +70,21 @@ fun ColoredBackgroundDemoScreen() = DemoScreen(rememberColoredBackgroundDemoStat
7070
}
7171
)
7272
}
73-
) { innerPadding ->
74-
Column(
75-
modifier = Modifier
76-
.fillMaxWidth()
77-
.verticalScroll(rememberScrollState())
78-
.consumeWindowInsets(innerPadding)
79-
.padding(innerPadding)
80-
) {
81-
DetailScreenDescription(
82-
modifier = Modifier.padding(all = OudsTheme.spaces.fixed.medium),
83-
descriptionRes = Component.ColoredBackground.descriptionRes
84-
)
73+
) {
74+
DetailScreenDescription(
75+
modifier = Modifier.padding(all = OudsTheme.spaces.fixed.medium),
76+
descriptionRes = Component.ColoredBackground.descriptionRes
77+
)
78+
ColoredBackgroundDemo(state = this@DemoScreen)
79+
OudsThemeTweak(OudsTheme.Tweak.Invert) {
8580
ColoredBackgroundDemo(state = this@DemoScreen)
86-
OudsThemeTweak(OudsTheme.Tweak.Invert) {
87-
ColoredBackgroundDemo(state = this@DemoScreen)
88-
}
89-
ColoredBackgroundDemoCodeSnippet(
90-
state = this@DemoScreen,
91-
modifier = Modifier
92-
.padding(all = OudsTheme.spaces.fixed.medium)
93-
.padding(top = OudsTheme.spaces.fixed.medium)
94-
)
9581
}
82+
ColoredBackgroundDemoCodeSnippet(
83+
state = this@DemoScreen,
84+
modifier = Modifier
85+
.padding(all = OudsTheme.spaces.fixed.medium)
86+
.padding(top = OudsTheme.spaces.fixed.medium)
87+
)
9688
}
9789
}
9890

0 commit comments

Comments
 (0)