Answers for "how to make the size of a material boutton biger flutter"

0

how to make the size of a material boutton biger flutter

MaterialButton(
                onPressed: () {},
                child: Container(
                  width: double.infinity,
                  height: 25,
                  decoration: BoxDecoration(
                    borderRadius: BorderRadius.circular(20),
                    color: Colors.blue,
                  ),
                  child: Center(
                    child: Text(
                      'LOOGIN',
                      style: TextStyle(
                        color: Colors.white,
                        fontSize: 15.0,
                        fontWeight: FontWeight.bold,
                      ),
                    ),
                  ),
                ),
              ),
Posted by: Guest on March-25-2022

Code answers related to "how to make the size of a material boutton biger flutter"

Browse Popular Code Answers by Language