Here we will see how to set app theme globally so that you can access from anywhere from your app. With this you are also able set them in the MaterialApp(). Here we will call a class name AppTheme and put the code below Here you see the variable appThemeData is an object of ThemeData()….
Category: Flutter
ITMS-90683: Missing Purpose String in Info.plist NSCameraUsageDescription Flutter app
If you are trying to submit your app to iOS store, then you may get a response from the apple store, that ITMS-90683: Missing Purpose String in Info.plist NSCameraUsageDescription For NSCameraUsageDescription, we need to add the exact purpose of using camera in the Value column. For example, You may also add it other way, directly…
Flutter Web App Correct Way to Run from Mobile App
Here i will cover the steps, those are needed to convert a Flutter mobile to browser app. By this, I mean how to run a mobile app in the browser. In general pretty much the below command could do the tricks. The above command does the trick. But sometimes it is not that simple. For…
Mention Somebody Flutter Group Chat
Mentioning somebody in a group chat of flutter application seems to be a tremendous task. So we have invested a lot of time built very first Flutter group chat where you can mention somebody. For group chat we have used Firebase api. Let’s took at the below image for mention somebody in the chat Check…
Great Solution ! Flutter Long Text inside Column
Let’s see how to put long text inside Column. Of course you have to put Text widget inside the Column widget a child. Here we will learn a specific rules to how it long should work every where. In general the below lay out won’t work. See the complex layout Row->Column->Text10Normal(). In this case Text10Normal()…
You Did Not About Know Access Token
There are at least two kinds of token we deal with. How access_token works in app or in Flutter framework. Now, how the access token should work and communication with the server, it’s a general idea of app building or architecture. The above code shows that we save our access_token to local storage. It does…
Flutter AppBar with PreferredSize | Bottom Text or Line
Flutter PreferredSize() widget could be used in AppBar() to controller the height of the app bar as well as show text or a line on the AppBar. Actually show the text on the bottom of the app bar. Not only a text, you may also show a line Here PreferredSize should be assigned to the…
Flutter Agora Voice Call
Here, I am going to share the code of Agora voice call and Flutter integration. Here we need to make sure you have agora sdk installed using the plugin. In this flutter application I have used Getx for state management. It’s a complete about audio and video voice call. Make sure you installed the plugin….
Flutter Show Chat Messages
Here’s the code that shows chat messages on certain flutter screen. This I have used in the audio and video chat app. It also detects if you are passing image or text. Every time a message is sent or user types in, and clicks on the send button, ChatRightList is get called, of course, this…
Camera Permission for iOS Flutter
You need to allow camera permission for ios device. Without this you won’t be to access gallery and camera resources. Put the above info in your info.plist file.