flutter_openmoji 0.0.8 flutter_openmoji: ^0.0.8 copied to clipboard
'OpenMoji is an open-source project of 50+ students and 2 professors of the HfG Schwäbisch Gmünd (Design University) and external contributers. This package bring those handcrafted magnciient emojis i [...]
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 !'),
),
)
]),
),
);
}
}