📜  font awsome flutter ,flutter font awsome - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:00.149000             🧑  作者: Mango

代码示例1
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"); }
     );
  }
}