Answers for "flutter floating action button gradient"

0

flutter floating action button gradient

floatingActionButton: FloatingActionButton(
          child: Container(
            width: 60,
            height: 60,
            child: Icon(Icons.add),
            decoration: BoxDecoration(
                shape: BoxShape.circle,
                gradient: LinearGradient(colors: [Colors.red, Colors.blue])),
          ),
          onPressed: () {},
        )
Posted by: Guest on October-19-2020

Code answers related to "flutter floating action button gradient"

Browse Popular Code Answers by Language