Answers for "Floating Action Button rectangular shaped (round corners)"

5

Floating Action Button rectangular shaped (round corners)

floatingActionButton: FloatingActionButton(
        onPressed: () {},
        child: const Icon(Icons.add),
        shape: RoundedRectangleBorder(
          borderRadius: BorderRadius.circular(10.0),
        ),
      ),
Posted by: Guest on September-03-2021

Code answers related to "Floating Action Button rectangular shaped (round corners)"

Code answers related to "Dart"

Browse Popular Code Answers by Language