Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

elevatebutton in flutter

ElevatedButton(
          onPressed: () {},
          child: const Text('Kindacode.com'),
          style: ElevatedButton.styleFrom(
              primary: Colors.pink,
              fixedSize: const Size(300, 100),
              shape: RoundedRectangleBorder(
                  borderRadius: BorderRadius.circular(50))),
        ),
Source by www.kindacode.com #
 
PREVIOUS NEXT
Tagged: #elevatebutton #flutter
ADD COMMENT
Topic
Name
6+4 =