@@ -64,40 +64,49 @@ fun TutorialScreen(
6464 Page .WELCOME -> TutorialPage (
6565 previewId = R .drawable.chooser_preview_animated,
6666 title = " Welcome to Chooser" ,
67- description = " Place your fingers on the screen and let the app choose for you " ,
67+ description = " Make quick, unbiased decisions with a touch. Place multiple fingers on screen, wait a brief moment, and Chooser will do the rest. " ,
6868 isVisible = isPageFullyVisible,
6969 )
7070
7171 Page .BUTTON -> TutorialPage (
7272 previewId = R .drawable.button_preview_animated,
7373 title = " How to Use" ,
74- description = " Mode Button: Switch between Single, Group, and Order modes\n " +
75- " Number Button: Change the number of winners or groups\n " +
76- " Settings: Long press Mode button for settings" ,
74+ description = """
75+ <p>
76+ <b>Mode Button</b><br>
77+ Switch between Single, Group, and Order modes.
78+ <b>Long press</b> to access additional settings.
79+ </p>
80+ <br>
81+ <p>
82+ <b>Number Button</b><br>
83+ Adjust how many fingers to select or groups to create.
84+ </p>
85+ """ ,
7786 isVisible = true ,
7887 )
7988
8089 Page .SINGLE_MODE -> TutorialPage (
8190 iconId = R .drawable.single_icon,
8291 previewId = R .drawable.single_preview_animated,
8392 title = " Single Mode" ,
84- description = " Chooses a random finger from all placed on screen" ,
93+ description = " Selects a random finger from all touching the screen. " ,
8594 isVisible = isPageFullyVisible,
8695 )
8796
8897 Page .GROUP_MODE -> TutorialPage (
8998 iconId = R .drawable.group_icon,
9099 previewId = R .drawable.group_preview_animated,
91100 title = " Group Mode" ,
92- description = " Divides all fingers into equal teams" ,
101+ description = " Divides all fingers into balanced teams or groups. " ,
93102 isVisible = isPageFullyVisible,
94103 )
95104
96105 Page .ORDER_MODE -> TutorialPage (
97106 iconId = R .drawable.order_icon,
98107 previewId = R .drawable.order_preview_animated,
99108 title = " Order Mode" ,
100- description = " Assigns a random order to all fingers" ,
109+ description = " Creates a random sequence of all fingers on screen. " ,
101110 isVisible = isPageFullyVisible,
102111 )
103112 }
0 commit comments