skip to Main Content

When I click to show flutter awesome dialog it doesn't work

When you click on the button to show awesome dialog, transparency appears over the application screen, but awesome dialog does not appear void askDoAgain() { AwesomeDialog( context: context, headerAnimationLoop: false, dialogType: DialogType.question, animType: AnimType.topSlide, title: trans(context, 'make_another_transaction'), desc: trans(context, 'start_new_transaction'),…

VIEW QUESTION

Flutter Warning when build release

I keep on getting these red warning when i try to build --release my app: tried flutter clean......... flutter clean --cache nothing is working, all packages are up-to-date. My build Gradle: buildscript { ext.kotlin_version = '1.8.0' repositories { google() mavenCentral()…

VIEW QUESTION

How to solve in flutter fonts_asset_mainfest?

Error: Couldn't resolve the package 'google_fonts' in 'package:google_fonts/src/asset_manifest.dart'. /C:/src/flutter/packages/flutter/lib/src/services/asset_manifest.dart:7:8: Error: Not found: 'package:google_fonts/src/asset_manifest.dart' import 'package:google_fonts/src/asset_manifest.dart' as google_fonts_asset_manifest; ^ Unhandled exception: Null check operator used on a null value #0 IncrementalJavaScriptBundler.compile (package:frontend_server/src/javascript_bundle.dart:227:69) #1 FrontendCompiler.writeJavaScriptBundle (package:frontend_server/frontend_server.dart:778:46) <asynchronous suspension> #2 FrontendCompiler.compile (package:frontend_server/frontend_server.dart:641:9) <asynchronous…

VIEW QUESTION
Back To Top
Search