365Bloggy Kotlin - apply vs with We will discuss Apply vs with, In this tutorial Apply : Apply is an extension of a function in the set scope of the object in which apply is invoked. Apply runs on the object reference of expression a...
365Bloggy Kotlin annotations Kotlin's annotation functionality enables programmers to incorporate extra information directly into source files. However, the program's actions remain unchanged as a result of this information. Seve...
365Bloggy Android progress notifications in Kotlin Fade In and Fade Out animations are used to change the appearance of any view over a given period of time, allowing the user to be aware of changes occurring in our programme of Mobile application . I...
365Bloggy Android Fade In-Out in Kotlin Fade In and Fade Out animations are used to change the appearance of any view over a given period of time, allowing the user to be aware of changes occurring in our programme. In this post, we will l...
365Bloggy What is Intent in Android? Users will see a leap from one application to another as part of the whole process, such as searching for a location in the browser and seeing a direct jump into Google Maps, or receiving payment link...
365Bloggy OffStage Widget in Flutter Offstage is a widget of Flutter . It's used to Hide or show any widget programmatically depending on user action. An offstage widget is a widget that lays the child available for hit testing without t...
365Bloggy OctoImage Widget-Flutter To display images in an application, the Flutter OctoImage widget needs an ImageProvider. A Place holder or a Progress indication for loading the image can be added to the OctoImage widget's images. T...
365Bloggy Table Widget in Flutter Table widgets are used to arrange things in a table layout. There is no need to utilise Rows and Columns to build a table. If we have numerous rows with columns that are the same width, the Table widg...
365Bloggy Stepper Widget -Flutter We will learn about the Flutter Stepper widget in this article. Step-by-step progress is shown on a stepper widget. In this post, we will look at the process of adding a Stepper to an application by c...
365Bloggy Tooltip Widget - flutter A tooltip is a built-in widget in Flutter that uses material design and displays a textual description of the widget in a floating label when a user long presses or hovers over it. When the applicatio...
365Bloggy Scrollable Text - Flutter We will create a Flutter application and add a Text Widget that can be scrolled horizontally or vertically. These might have a variety of applications based on the demands of the consumers. In this ar...
365Bloggy Nested Scroll View -Flutter In Flutter, you can use a NestedScrollView widget to build a scrollable view with multiple scrolling parts that can move independently. This is typically used when you want a header to stay visible as...