Answers for "how can i move floating action button to center flutter"

4

how can i move floating action button to center flutter

Scaffold(
      floatingActionButtonLocation: FloatingActionButtonLocation.centerFloat,
      floatingActionButton: FloatingActionButton(
        child: const Icon(Icons.add),
        onPressed: (){},
      ),
    );
Posted by: Guest on August-22-2021

Code answers related to "how can i move floating action button to center flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language