365Bloggy Speed Dial in Flutter - FAB A floating action button is a primary action button that has a fixed position in an app and does not change the screen's contents. Speed dial is a transition type of FAB that emits many entities as an...
365Bloggy Animation in Route Transition - Flutter For Flutter apps, routes are just Pages. It is common for an application to have to navigate between pages. But animations can be utilised to improve the smoothness of these transitions. The PageRoute...
365Bloggy ConstrainedBox Widget - Flutter One of the flutter SDK's built-in widgets is ConstrainedBox. Its purpose is to give its child widgets size limits. It's quite useful when we want an image or container to stay within a specific height...
365Bloggy Dismissible Widget - Flutter Items that can be swiped off the screen can be created with Flutter's Dismissible widget. It's frequently used in grids or lists if you want to provide users the ability to swipe away things. We will ...
365Bloggy DropDownButton Widget - Flutter A material design button is called a DropDownButton. We can choose one distinct value from a range of values using the DropDownButton widget. The user can choose one value from a variety of options. T...
365Bloggy ToggleButton in Kotlin ToggleButton works similarly to a switch, with two states: ON or OFF, represented by the boolean values true and false, respectively. ToggleButton, unlike switch, does not offer a slider interface, so...
365Bloggy Hinge Animation - Flutter Certain applications in Flutter have distinct mobile application animations set. It enhances the visual appeal and user-friendliness of an app. We shall go into great detail about the Hinge animations...
365Bloggy Lottie Animation - Flutter Although they can greatly enhance an application's user interface, animations can be difficult to integrate into applications. The Lottie animation enters the picture at this point. Lottie is an anima...
365Bloggy Skeleton Text - Flutter The skeleton_text package in Flutter makes it simple to create skeleton text loading animations. Its primary usage in a Flutter app is to inform consumers that although the servers are operating slowl...
365Bloggy Icon Class in Flutter To display particular symbols in our app, we use the icon class in Flutter. We may utilise the Icon class to easily integrate an icon into our application rather than having to create a picture for it...
365Bloggy Staggered Grid View - Flutter Staggered Grid View is a layout that is used to show images and posts. As seen on a variety of social media channels, including Pinterest. The key advantage of Staggered Grid View is that it enhances ...
365Bloggy Horizontal List-Flutter In Flutter there are types of lists: horizontal lists and vertical lists. Both these lists are created using list view and also set scroll direction parameters. By default scroll direction is vertical...