Generally we get error of pod missing when you configure new flutter project in xcode for make release build for iOS. Here we try to solve pod installation issue. First of all you have to open flutter project with Android Studio and follow below steps to install pod Install Pod…
View More pod install in Flutter AppCategory: iOS App Development
Load your image assets faster in Flutter!
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!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 serializationPublish your Flutter app to Google Play Store
App-signing, building artifacts and releasing your app to Google and Apple. Here we tried to simplify to make sign APK for submit App to Google Play Store. 1. Generate your keystore Every app needs to be digitally signed by its own keystore (a .jks file) before being uploaded to Google or Apple. When…
View More Publish your Flutter app to Google Play StoreLogin-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 link