flutter_openmoji 0.0.2
flutter_openmoji: ^0.0.2 copied to clipboard
'[OpenMoji](https://openmoji.org) is an open-source project of 50+ students and 2 professors of the [HfG Schwäbisch Gmünd](http://www.hfg-gmuend.de/) (Design University) and external contributers. Thi [...]
example/main.dart
import 'package:flutter/material.dart';
import 'package:flutter_openmoji/flutter_openmoji.dart';
void main() {
runApp(const OpenmojiDemoApp());
}
class OpenmojiDemoApp extends StatelessWidget {
const OpenmojiDemoApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Column(children: [
Center(
child: IconButton(
icon: const Icon(
OpenmojiIcons.airplane,
color: Colors.blue,
),
onPressed: () => print('OpenMoji icons !'),
),
)
]),
),
);
}
}