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...
365Bloggy Multiline TextField in Flutter Multiline TextField is the input value which takes input in more than the on line. This type text field is used in feedback, user comments, Description from the user. Let's take an example of a multil...
365Bloggy BoxShadow Widget in Flutter Casting a shadow on a box is the capability of the built-in Flutter widget BoxShadow. Typically, BoxShadow is utilized in conjunction with BoxDecoration. In the BoxDecoration widget one of its paramet...