Answers for "floatingactionbutton flutter"

9

floatingactionbutton flutter

Widget build(BuildContext context) {
  return Scaffold(
    appBar: AppBar(
      title: const Text('Floating Action Button'),
    ),
    body: Center(
      child: const Text('Press the button below!')
    ),
    floatingActionButton: FloatingActionButton(
      onPressed: () {
        // Add your onPressed code here!
      },
      child: Icon(Icons.navigation),
      backgroundColor: Colors.green,
    ),
  );
}
Posted by: Guest on November-05-2020

Code answers related to "floatingactionbutton flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language