Floating action Button, FAB Button

Code examples

0
0

Floating action Button, FAB Button

@Composable
fun FabButton (){
    Scaffold(
        modifier = Modifier
            .fillMaxSize(),
        floatingActionButton  = {
            ExtendedFloatingActionButton(
                text = { Text("Add Button") },
                icon = { Icon(Icons.Filled.Add,"")},
                onClick = { },
                modifier = Modifier.fillMaxWidth(0.4f)
                    .fillMaxHeight(0.075f),
                shape = AbsoluteRoundedCornerShape(50),
                backgroundColor = MaterialTheme.colors.primary,
                contentColor = MaterialTheme.colors.onPrimary
                )
        },
        floatingActionButtonPosition = FabPosition.Center,
        isFloatingActionButtonDocked = false,
        content = {}
    )
}

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................