Answers for "floating action button flutter shape long button"

5

floating action button rectangle flutter

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

flutter reduce size of floating action button

floatingActionButton: Container(
        height: 100.0,
        width: 100.0,
        child: FittedBox(
          child: FloatingActionButton(onPressed: () {}),
        ),
      ),
Posted by: Guest on August-15-2021

Code answers related to "floating action button flutter shape long button"

Browse Popular Code Answers by Language