365Bloggy CircularProgressIndicator in flutter .In Flutter, we can simply wrap the CircularProgressIndicator widget as a Container widget and specify the height and width of the container to increase and reduce the size of the CircularProgressIndi...
365Bloggy How to Add Space Between Widgets in Flutter? In this article, we will learn how to add space between widgets. Many options are available in flutter between space of widgets of Mobile application . There are many options available for the spacing...
365Bloggy InitState() - Flutter We can create a cross-platform application on Flutter the same as a native application. Flutter was developed by Facebook. We can create two types of coding in the Flutter. The first one is a Stateles...
365Bloggy Custom Bottom Navigation Bar in Flutter An app's bottom navigation bar is a material widget that allows users to choose or navigate between its various pages. It is typically utilised as the scaffold when used in conjunction with Scaffold.b...
365Bloggy Get Current Default Language of Android Device Programmatically? While internalising an Android application, we should be aware of the current language on the device. This example demonstrates how to get the current language in an Android Application . Step by step...
365Bloggy Check Internet Connection in Android There are many applications created on Android using Android Studio but normally most applications fetch data from the network. That time we will check the internet connection Also, show the message “...
365Bloggy Creating a Splash Screen A splash screen is mostly a project that opens the first screen of a mobile application. That screen lists images, logos, and others. Generally shows for the first time when an app is launched. The sp...
365Bloggy How to Send an Email From an Android Application? In this article, you will create a simple application that can be used to send email through your Android application. We can send data using intent with ACTION_SEND with extra fields. There are three...
365Bloggy Restrict Landscape mode in Flutter Our app is designed to run in portrait mode; if we switch to landscape mode, the user interface might not change accordingly. There are two scenarios: either your programme can be configured to run in...
365Bloggy Background local notifications in Flutter It is a cross-platform plugin that displays local alerts in a Flutter application. It provides a variety of capabilities, such as scheduling when notifications should appear, periodically showing a no...
365Bloggy Form Submission Page in Flutter There are many ways to submit user input data in Flutter. the most used way is using TestFileds.Textfiles input different types of numbers, strings, etc. Test Fields require a controller of every text...
365Bloggy Form Validation in Flutter Form validation is an important part of mobile application. Many fields required validations on the Mobile application . We can add validation of TextEditingcontroller. The input is verified in your f...