简体   繁体   中英

How do I made a button like this in flutter

I want to make a login button button like this image.But I don't know how to do this. Anyone please help me out.

图片

ElevatedButton(
  onPressed: (){},
  child: const Text('Login'),
  style: ButtonStyle(
    backgroundColor: MaterialStateProperty.all(Colors.blue),
    padding: MaterialStateProperty.all(EdgeInsets.symmetric(horizontal: 80, vertical: 25)),
    shape: MaterialStateProperty.all(
      RoundedRectangleBorder(
        borderRadius: BorderRadius.circular(35.0),
      ),
    ),
  ),
);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM