@@ -18,7 +18,18 @@ val suggestionList = listOf(
1818 SuggestionModel (" Modifier" ),
1919 SuggestionModel (" SubcomposeLayout" ),
2020 SuggestionModel (" Recomposition" ),
21- SuggestionModel (" SideEffect" )
21+ SuggestionModel (" SideEffect" ),
22+ SuggestionModel (" PointerInput" ),
23+ SuggestionModel (" AwaitPointerScope" ),
24+ SuggestionModel (" Gesture" ),
25+ SuggestionModel (" Drag" ),
26+ SuggestionModel (" Transform" ),
27+ SuggestionModel (" Canvas" ),
28+ SuggestionModel (" DrawScope" ),
29+ SuggestionModel (" Path" ),
30+ SuggestionModel (" PathEffect" ),
31+ SuggestionModel (" PathOperation" ),
32+ SuggestionModel (" Blend Mode" ),
2233)
2334
2435class HomeViewModel : ViewModel () {
@@ -27,7 +38,7 @@ class HomeViewModel : ViewModel() {
2738
2839 val tutorialList = mutableListOf<List <TutorialSectionModel >>()
2940
30- private val _suggestionState = MutableStateFlow < List < SuggestionModel >> (suggestionList)
41+ private val _suggestionState = MutableStateFlow (suggestionList)
3142
3243 val suggestionState: SharedFlow <List <SuggestionModel >>
3344 get() = _suggestionState
0 commit comments