Answers for "cupertino icon button flutter"

8

flutter button with icon

ElevatedButton.icon(
          onPressed: () {},
          icon: Icon(Icons.email),
          label: Text("Contact me"),
          style: ElevatedButton.styleFrom(
            textStyle: TextStyle(fontSize: 15),
          ),
        ),
Posted by: Guest on September-18-2021
0

cupertino icons flutter

//Add package //   cupertino_icons: ^1.0.0
import 'package:cupertino_icons/cupertino_icons.dart';
Icon(CupertinoIcons.<icon-name>,)
Posted by: Guest on September-13-2021

Browse Popular Code Answers by Language