diff --git a/example/ios/Podfile b/example/ios/Podfile new file mode 100644 index 0000000..08502ee --- /dev/null +++ b/example/ios/Podfile @@ -0,0 +1,10 @@ +# Uncomment the next line to define a global platform for your project +# platform :ios, '9.0' + +target 'Runner' do + # Comment the next line if you don't want to use dynamic frameworks + use_frameworks! + + # Pods for Runner + +end diff --git a/example/lib/main.dart b/example/lib/main.dart index c2d14ae..dd4ce71 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -1,6 +1,5 @@ import 'package:flutter/material.dart'; import 'package:flutter_icons/flutter_icons.dart'; -import 'ant_design_page.dart'; void main() => runApp(MyApp()); @@ -22,10 +21,7 @@ class MyApp extends StatelessWidget { // is not restarted. primarySwatch: Colors.blue, ), - home: MyHomePage(title: 'Icons Explorer'), - routes: { - "icon_page":(_)=>AntDesignPage() - }, + home: MyHomePage(title: 'Flutter Icons'), ); } } @@ -60,7 +56,13 @@ class _MyHomePageState extends State { child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ - Icon(AntDesign.login) + Icon(AntDesign.stepforward), + Icon(Ionicons.ios_search), + Icon(FontAwesome.glass), + Icon(MaterialIcons.ac_unit), + Icon(FontAwesome5.address_book), + Icon(FontAwesome5Solid.address_book), + Icon(FontAwesome5Brands.$500px) ], ), ),