skip to Main Content

how to solve flutter bar code package problem

I try to build a release apk for my project, but I face an exception: FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring project ':flutter_barcode_scanner'. > Could not create an instance of type com.android.build.api.variant.impl.LibraryVariantBuilderImpl.…

VIEW QUESTION

Debian – Getting late initialization error in flutter open_file package

I am trying to read docx/xlsx file in flutter using open_file package. Running the flutter application in Debian 12. import 'package:flutter/material.dart'; import 'package:open_file/open_file.dart'; class WordViewerPage extends StatelessWidget { final String filePath; WordViewerPage({required this.filePath}); @override Widget build(BuildContext context) { return FutureBuilder<OpenResult>(…

VIEW QUESTION

build failed in flutter build apk

when i run flutter build apk i get this error: FAILURE: Build failed with an exception. * What went wrong: Could not resolve all files for configuration 'classpath'. > Could not find lint-model-30.3.0.jar (com.android.tools.lint:lint-model:30.3.0). > Searched in the following locations:…

VIEW QUESTION

Flutter mapController LateInitializationError

I was trying to setup a mapController to return the bounds of Flutter_map but this "LateInitializationError: Field '_internalController@' has not been initialized" error keeps coming up import 'package:flutter/material.dart'; import 'dart:io'; import 'package:dio_cache_interceptor/dio_cache_interceptor.dart'; import 'package:dio_cache_interceptor_file_store/dio_cache_interceptor_file_store.dart'; import 'package:flutter_map/flutter_map.dart'; import 'package:flutter_map_cache/flutter_map_cache.dart'; import 'package:latlong2/latlong.dart';…

VIEW QUESTION
Back To Top
Search