style: clear name
This commit is contained in:
parent
c9e9cf5265
commit
dea6164b28
1 changed files with 2 additions and 2 deletions
|
@ -7,13 +7,13 @@ import xyz.atnrch.wrench.watcher.Watcher
|
||||||
@Composable
|
@Composable
|
||||||
fun WrenchScaffold() {
|
fun WrenchScaffold() {
|
||||||
val watcher = remember { Watcher() }
|
val watcher = remember { Watcher() }
|
||||||
var state by remember { mutableStateOf(false) }
|
var buttonState by remember { mutableStateOf(false) }
|
||||||
|
|
||||||
Scaffold(
|
Scaffold(
|
||||||
topBar = { TopBar() },
|
topBar = { TopBar() },
|
||||||
floatingActionButton = { AddButton() },
|
floatingActionButton = { AddButton() },
|
||||||
isFloatingActionButtonDocked = true,
|
isFloatingActionButtonDocked = true,
|
||||||
bottomBar = { BottomAppBar(watcher, state) { state = it } }
|
bottomBar = { BottomAppBar(watcher, buttonState) { buttonState = it } }
|
||||||
) {
|
) {
|
||||||
WrenchFileManagerInput()
|
WrenchFileManagerInput()
|
||||||
WrenchFileManagerOutput()
|
WrenchFileManagerOutput()
|
||||||
|
|
Reference in a new issue