diff --git a/README.md b/README.md index 833371f..0f9e9e5 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,8 @@ Proximity solves this problem. It enables users to touch and feel widgets so tha ### Widget +- FractionallySizedBox +- AnimatedList - Flow - AnimatedWidget - ToggleButtons diff --git a/lib/home_page.dart b/lib/home_page.dart index d206f98..62b6c77 100644 --- a/lib/home_page.dart +++ b/lib/home_page.dart @@ -23,6 +23,17 @@ class HomePage extends StatelessWidget { return Scaffold( appBar: AppBar( title: Text('proximity'), + actions: [ + Platform.isIOS + ? IconButton( + icon: Icon(Icons.search), + onPressed: () { + Navigator.push(context, + MaterialPageRoute(builder: (context) => AlgoliaPage())); + }, + ) + : SizedBox() + ], ), body: SingleChildScrollView( child: Column(