In the current age, Contacts is very useful in mobile app for sharing. Here I try to implement Get phone contacts in Flutter App. You can Download Source Code via Github. Form here we start to implement, First we add lib file in .yaml file Add the following libs to your pubspec.yaml file:…
View More Get Phone ContactsTag: source code
Google sign-in & Firebase authentication
Social Sign-In is good option in Mobile app. In this article, I will explain How to implement Google Sign-In and Firebase authentication. You can Download Source Code via Github. Add the following libs to your pubspec.yaml file: Building UI main.dart Sign-In with Google Sign-out You can Download Source Code via Github. Set up a…
View More Google sign-in & Firebase authenticationFlutter-API call (News app)
When we think about any famous app then we have to think about data change dynamically change from server and it can possible using API call to server and display data to app. Here, Flutter App with API call. You can Download Source Code via Github. First of all we will…
View More Flutter-API call (News app)Splash-Intro-Login Screen UI
When you think about mobile app then First step of app is Splash screen. So why we should not implement attractive UI with animation in Splash screen? Here we serve animated splash screen for Flutter. You can Download Source Code via Github. Splash Screen It is very easy to implement Splash…
View More Splash-Intro-Login Screen UIGridView
If you want to display your items as a grid rather than a normal list of items that come one after the next. In this post we will use simple demo to look at all of the common use cases for making them. Consider this post reference. Convert the data…
View More GridViewListView Header
If You want to create lists that display different types of content. For example, you might be working on a list that display a header followed by a sub items related to the header, followed by another header. Convert the data source into widgets main.dart You can Download Source Code…
View More ListView Header