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...
365Bloggy Custom Height for Widget in GridView Custom Height and width of grid view we can use the property ChildAspectRation of the grid view of Mobile applicaiton . Syntax var size = MediaQuery.of(context).size; final double itemHeight = (size.h...
365Bloggy Toast in Flutter Toast is used to create a toast message on Mobile applications . One line code of toast message. Every project must of content toast to show error and another message of flutter application. Step 1: A...
365Bloggy How to Change the Typeface of TextView in Android? A typeface is a design for alphabets that differs from other typefaces in terms of style, size, and weight. In general, your device or software contains a large number of local typefaces for use. Howe...
365Bloggy Pie Chart into an Android Application Pie chart is a circular statistical graphic, which is divided in slices of numerical data.Also referred to as a circle graph, a circular chart is divided into segments that represent relative frequenc...
365Bloggy How to Create a RecyclerView with Multiple ViewType in Android? Optimizing memory consumption is crucial when a lengthy list of objects is being displayed. A personalized list of things is inflated by a RecyclerView. This list may consist of several different layo...
365Bloggy How to Use LocalBroadcastManager in Android? The local broadcast manager is one of the most important features of Android applications. The broadcast manager will notify us when a specific event occurs. Broadcast manager which notifies users wit...
365Bloggy Format Dates in Flutter The Dart in built method,for formatting ,date in flutter application while dealing with dates it should be in number readable format. In the article . We will look at examples of change date format on...
365Bloggy Modal Bottom Sheet in Flutter As an alternative to a menu or dialogue, a modal bottom sheet restricts the user from interacting with the application's other features. It will overlay the user interface, saving you from having to s...
365Bloggy Flutter how to programmatically exit the app In this article, We are going to see how to programmatically close a flutter application while pressing back press.exit(0): exit used to exit the mobile application . A sample video is below. Using sy...
365Bloggy Outputting Widgets Conditionally in Flutter UI is able to create a beautiful app with Flutter. Flutter provides a conditional widget. We can hide and show a widget using conditions on flutter application. Let’s talk about an example of a hide a...