Ahsin Irshad
Senior Flutter Developer | Ex. Native Android Developer
Tag Archives: ahsin
How to Estimate Time for A Project: A Comprehensive Guide
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…
Explore Line Chart In Flutter. Learn how to create an interactive Line… | 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(),…