We can have the images in our assets folder and we are fetch image and Load image from assets folder. It’s take a time to load, Here is a function in Flutter that helps us to do fast — precacheImage() Many times it happens that your images from local assets take…
View More Load your image assets faster in Flutter!Tag: Flutter Examples
JSON and serialization
It is hard to think of a mobile app that doesn’t need to communicate with a web server or easily store structured data at some point. When making network-connected apps, the chances are that it needs to consume some good old JSON, sooner or later. This guide looks into ways…
View More JSON and serializationLogin-Signup with Validation and Animation
In current age, Most of mobile apps have Login-Signup. So Login and Signup is needed functionality for all mobile apps. So we are trying to implement Login/Signup UI with validation and animation. It’s simple looks but attractive and useful in all apps. You can Download Source Code via Github. Animation You…
View More Login-Signup with Validation and AnimationFlutter App Bar with icon, Title and Actions link
It is very common to have App Bar in mobile apps, most mobile apps have app bar. We also known as action bar in mobile apps. App Bar or top App Bars is a collection of widget located at the top of the app, for wrapping our app’s title, icon…
View More Flutter App Bar with icon, Title and Actions linkFlutter- Country Info using API
There are many country in the world, Here we will try to display all country info using API with Flutter. API calling is very useful tool for all Mobile applications. You can Download Source Code via Github. API call List tiles Widgets You can Download Source Code via Github.
View More Flutter- Country Info using APIFlutter Scale UI according to different screen sizes
Since we have full control on all the pixels, we might want to draw a rectangle like this. We have a rectangle, but now, look at what happens if we display it on an iPhone 5s (4″ Display) and on an iPhone XS Max (6,46″ Display). You can Download Source…
View More Flutter Scale UI according to different screen sizes