-
Notifications
You must be signed in to change notification settings - Fork 5
Shared Components
Tristan Elliott edited this page Mar 14, 2024
·
3 revisions


- UI demonstration with code below:

- example code:
SharedComponents.NoDrawerScaffold(
topBar = {},
bottomBar={}
) { contentPadding ->
//CONTENT
}
}
- UI demonstration of drawer open with code below:

SharedComponents.DrawerScaffold(
scaffoldState = scaffoldState,
topBar = {},
bottomBar = { },
drawerContent = {}
) { contentPadding ->
}