Answers for "icon font flutter"

1

font awsome flutter ,flutter font awsome

import 'package:font_awesome_flutter/font_awesome_flutter.dart';

class MyWidget extends StatelessWidget {
  Widget build(BuildContext context) {
    return IconButton(
      // Use the FaIcon Widget + FontAwesomeIcons class for the IconData
      icon: FaIcon(FontAwesomeIcons.gamepad), 
      onPressed: () { print("Pressed"); }
     );
  }
}
Posted by: Guest on April-20-2021
0

flutter icons

dependencies:
  flutter_icons: ^1.1.0
Posted by: Guest on August-10-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language