File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ function changeTheme(newTheme: any) {
21
21
<template >
22
22
<CustomPage >
23
23
<StackLayout class =" py-4 pl-3" >
24
- <Label :text =" `Current Theme: ${schema}`" />
24
+ <Label :text =" `Current Theme: ${schema}`" class = " text-2xl " />
25
25
26
- <ListView :items =" THEMES" height =" 400 " >
26
+ <ListView :items =" THEMES" height =" 300 " >
27
27
<template #default =" { item , index }: ListItem < string > " >
28
28
<FlexboxLayout class =" pl-2 py-4" @tap =" changeTheme(item)" >
29
29
<Label class =" h-[16] w-[16] bg-green-400 rounded-full"
@@ -32,7 +32,12 @@ function changeTheme(newTheme: any) {
32
32
</FlexboxLayout >
33
33
</template >
34
34
</ListView >
35
- <FlexboxLayout class =" justify-around" >
35
+
36
+ <FlexboxLayout >
37
+ <Label text =" Reactive Palette" width =" auto" class =" mt-8 text-lg px-2 rounded-lg" :backgroundColor =" palette?.colors.bgVariant " />
38
+ </FlexboxLayout >
39
+
40
+ <FlexboxLayout class =" justify-around mt-4" >
36
41
<StackLayout :backgroundColor =" palette?.colors.bgVariant " class =" px-3 py-2 rounded-full text-center" >
37
42
<Label text =" bg" ></Label >
38
43
<Label :text =" palette?.colors.bg " ></Label >
You can’t perform that action at this time.
0 commit comments