How to Create Bottom Tab Navigation in Flutter

Bottom tab navigation is a new norm in mobile app development. It makes navigation easy for users. In this blog post let’s see how to add Bottom Tab Navigation in Flutter. We use Cupertino package too in this Flutter tutorial. The Cupertino package consists of iOS style widgets such as CupertinoTabScaffold to create bottom tabs….

How to Navigate from One Screen to Another in Flutter

How to Navigate from One Screen to Another in Flutter

Navigation is a very important aspect of mobile apps. Literally, we can’t create helpful mobile apps without navigation. In this blog post, let’s check how to navigate between screens in Flutter. We call full-screen views of a mobile app the screens, but in Flutter, they are called routes. The navigation in Flutter is done by…