Tag Archives: ahsin irshad

What’s new in Flutter 3.24. Unleashing Flutter GPU, Multi-View… | Flutter | Aug, 2024

Welcome to the latest Flutter update! Flutter 3.24 is packed with exciting new features and enhancements to elevate your app development experience. This release highlights the preview of Flutter GPU, which enables advanced graphics and 3D scenes directly in Flutter. Web apps can now embed multiple Flutter views, enhancing your app’s versatility. And finally, we’ve…

Read More

How to Estimate Time for A Project: A Comprehensive Guide

How to Estimate Time for A Project: A Comprehensive Guide | by What the Flutter | Apr, 2024

Project estimation is pivotal in determining the viability and success of a project. It involves predicting the necessary effort, time, and resources, directly influencing whether a project is worth pursuing from a business perspective. Key reasons for estimation include aligning project objectives with business goals, ensuring efficient resource utilization, setting client and team expectations, and…

Read More

Mobile App Design Process Steps: 2024 Full Guide | Apr, 2024

In the dynamic world of app development, creating a seamless and user-friendly application requires a well-structured design process. What the Flutter specializes in developing cutting-edge applications, and in this article we will analyze all the steps of What the Flutter’s design process using the example of the Blogfit app case. Starting with the Initial Client…

Read More

Flutter Developer Interview Questions: From Easy to Hard | Mar, 2024

Flutter Developer Interview Questions: From Easy to Hard | by Flutterdynasty | Mar, 2024

What is Flutter? Flutter is an open-source UI software development kit created by Google. It is used to develop applications for mobile, web, and desktop from a single codebase. Explain the difference between StatelessWidget and StatefulWidget. StatelessWidget is immutable, meaning its properties can’t change after it’s created. StatefulWidget, on the other hand, is mutable and…

Read More

Mastering Flutter ThemeData and Theme Widget: Advanced App Theming

Mastering Flutter ThemeData and Theme Widget: Advanced App Theming | by Flutterdynasty

Introduction: In this article, we will dive deep into the world of Flutter app theming using the ThemeData class and Theme widget. By the end of this article, you will be able to create visually appealing and cohesive app interfaces that adapt to various screen sizes and device capabilities. Before we begin, it is important…

Read More

Harness the Gemini API in your Dart and Flutter Apps | Flutter | Feb, 2024

Harness the Gemini API in your Dart and Flutter Apps | by Ander Dobo | Flutter | Feb, 2024

Introducing the Google AI Dart SDK We’re thrilled to announce the launch of the Google AI Dart SDK for the Gemini API. The new pub.dev package, google_generative_ai, and supporting resources enable you to build your own generative AI-based features into Dart and Flutter apps through an idiomatic Dart integration with the Gemini API. It opens…

Read More

What’s new in Flutter 3.19. Revolutionizing App Development with… | Flutter | Feb, 2024

Revolutionizing App Development with the Gemini API, Impeller Updates, and Windows Arm64 Support Today we present you with a new Flutter release, Flutter 3.19. This release brings a new Dart SDK for Gemini, a widget enabling developers to add fine-grained control to widget animations, a rendering boost with updates to Impeller, tooling to help implement…

Read More

Explore Line Chart In Flutter. Learn how to create an interactive Line… | Feb, 2024

Explore Line Chart In Flutter. Learn how to create an interactive Line… | by Sk | Feb, 2024

To utilize LineChart , you need to call the constructor underneath: const LineChart( this.data, { this.chartRendererKey, super.key, super.duration = const Duration(milliseconds: 150), super.curve = Curves.linear, }); In LineChart we will use the LineChartData constructor on the data field: LineChartData({ this.lineBarsData = const [], this.betweenBarsData = const [], super.titlesData = const FlTitlesData(), super.extraLinesData = const ExtraLinesData(),…

Read More