Developing Flutter Plugin for Android and iOSFlutter Plugin is a package containing dart code and a wrapper around the native code. It provides a way to call platform-specific code to access native features and functionalities from Flutter like camera functionality, working with maps, integrati...Feb 1, 2024·5 min read
Publish and upgrade your Flutter Package on pub.devYou are developing your awesome flutter app implementation awesome functionalities and awesome widgets. Now you want to share that awesomeness with others. How do you do so? Of course. By publishing your awesome widgets as a package. But how do you d...May 12, 2023·5 min read
AndroidManifest.xml : OverviewBeginners usually ignore or forget about the AndroidManifest.xml file but its role in app development is huge. In this blog, we will try to get to know this important AndroidManifest.xml file better. First, let’s look at what is XML file. XML stands ...Mar 29, 2023·6 min read
Publish and upgrade your Flutter Package on pub.devYou are developing your awesome flutter app implementation awesome functionalities and awesome widgets. Now you want to share that awesomeness with others. How do you do so? Of course. By publishing your own awesome widgets as a package. But how do y...Jan 9, 2023·5 min read
Dart enhanced enum with custom valuesAn enum type is a special data type that enables for a variable to be a set of predefined constants. It helps to make code readable and easier to understand. For example, you might use an enum to define the gender of the people, like this: enum Gende...Dec 16, 2022·2 min read
Learning TDD with Clean Architecture for Flutter Part IVPart I here Part II here Part III here This is the final part of the series. Let’s get write into it. Presentation Layer Presentation Layer It is the UI part. Code is written to give life to the app. It is the part where users interact. It consists o...Nov 30, 2022·5 min read
Learning TDD with Clean Architecture for Flutter (Data Layer) Part IIIPart I here Part II here Part IV here In this part, let’s finish the data layer. Data Data Layer It is the layer in which the app interacts with the outside world. It provides data to the app from the outside. It consists of low-level Data sources, R...Sep 21, 2022·8 min read