From 4b401d7962ac7ca0931e59b7af4bc7ceac284169 Mon Sep 17 00:00:00 2001 From: Manan Shah Date: Sat, 24 Apr 2021 23:00:21 +0530 Subject: [PATCH] Issue of features page fixed updated URL to https://getwidget.dev/features/ from https://getflutter.dev/features/ --- lib/screens/drawer/drawer.dart | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/screens/drawer/drawer.dart b/lib/screens/drawer/drawer.dart index 346c12a..d795d93 100644 --- a/lib/screens/drawer/drawer.dart +++ b/lib/screens/drawer/drawer.dart @@ -973,14 +973,17 @@ class _DrawerPageState extends State { Navigator.push( context, MaterialPageRoute( - builder: (BuildContext context) => WebView(url: 'https://getflutter.dev/features/'), + builder: (BuildContext context) => + WebView(url: 'https://getwidget.dev/features/'), ), ); }, child: const Padding( padding: EdgeInsets.only(left: 2), child: GFListTile( - title: Text('Features', style: TextStyle(fontSize: 16, color: Colors.black87)), + title: Text('Features', + style: + TextStyle(fontSize: 16, color: Colors.black87)), ), ), ),