Issue I need to print the second largest number on the list, the output from the below code is all elements in the list except the first and the last one. What is the mistake? void main () { List
Continue readingTag: dart-pub
Dart – Converting a http response to a buffer
Issue how do i convert a http response to a buffer? im using the http pub package https://pub.dev/packages/http and one of the endpoints of an api im using is returning an image file, i want to convert it to a
Continue readingNavigator.onGenerateRoute was null, but the route named "/login" was referenced
Issue As I click on the "Continue" button it’s not navigating me to the LogIn Screen.I tried multiple times but its not working and displaying me the above error sometimes. What should be the correct code here for me to
Continue readingException in thread "main" java.util.zip.ZipException:
Issue i am having more problems with flutter, i almost completed my app and removed all the errors and wanted to run but it does not work and it shows this? i dont know whats the problem and i am
Continue readingi am trying to make my first app in fluttet "Error on line 46, column 15: Mapping values are not allowed here. Did you miss a colon earlier?"
Issue enter image description here cupertino_icons: ^1.0.2 STATE MANAGEMENT mobx: ^2.0.3 flutter_mobx: ^2.0.1 dev_dependencies: flutter_test: sdk: flutter mobx_codegen: ^2.0.2 build_runner: ^2.2.0 Solution Try the following code: dev_dependencies: flutter_test: sdk: flutter mobx_codegen: ^2.0.2 build_runner: ^2.2.0 Answered By – My Car Answer
Continue readingFlutter (Unable to load asset)
Issue I’m unable to load images to my app although I tried many solutions my code is import ‘package:flutter/material.dart’; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your
Continue readingWhat is a radix in integer class in dart programming?
Issue I am learning dart programming language for Flutter. In the integer class what does the word radix means ? Please explain me this. Thanks Solution Sometimes we have to work with string in radix number format. Dart int parse()
Continue readingFlutter Table Calendar : Showing Event from API to Table Calendar Pub version table_calendar: ^3.0.6
Issue Hi This is my code im new to flutter kindly help me with the when I execute this im getting an error at the value Notifier for the _selectedEvents. im trying to use the API to fetch the data
Continue readingWhen using flutter_blue package and trying to build android appBuild fails with an exception. This is happening only when I am importing this package
Issue I am trying to use flutter_blue package in flutter application. It is easily added to the dependencies but when I try to build the app after adding this package an exception occurs. I have done all the required setups
Continue readingHow to show all the text field dynamically values by loop or index flutter
Issue Hello everyone I have been trying to get the value from dynamic text fields values to the next screen here is the first screen code. for (int i = 0; i < _nameControllers.length; i++) { Navigator.pushReplacement( context, CupertinoPageRoute( builder:
Continue reading