6,976 questions
3
votes
2
answers
3k
views
Flutter with Android Studio does not show Device List
Installing Flutter with Android Studio does not show me the device list that I am expecting. When inspecting the same using the flutter devices it shows me results but not in the Android studio device ...
0
votes
2
answers
2k
views
Get unique ANDROID_ID on flutter is it possible?
I would like to get the unique device id on android with Flutter.
I've tried this plugin device_info but it doesn't return the ANDROID_ID that I get in java Settings.Secure.getString(context....
6
votes
2
answers
4k
views
Xcode build error for Flutter with Firebase-auth plugin on beta 0.3.2 : incompatible block pointer
This concerns firebase-auth plugin for flutter.
I have the same code running on two mac computers.
I just did a fresh install on the latter, and get a build error on FirebaseAuthPlugin.m : ...
11
votes
3
answers
15k
views
How to encrypt the SQLite database in Flutter?
I am creating a database in Flutter by the following code, is there any way we can encrypt the database?
Is there any library available for Flutter?
initDb() async {
io.Directory ...
3
votes
1
answer
4k
views
Firestore is failed to build with Flutter for iOS
I want to add Firestore to Flutter app, and I have problems running it on iOS.
I already added this line to pubspec.yaml
cloud_firestore: ^0.6.3
Flutter is updated. Flutter doctor says that I have ...
16
votes
2
answers
9k
views
Flow Layout in flutter example
i want to implement flow layout in flutter i found a class called FLOW in sdk but unable to find sample code on how to use it
here is the layout i am trying to achieve
0
votes
0
answers
368
views
Failed assertion: line 38 pos 12: 'displayName != null': is not true
Firebase Flutter login getting error
04-28 14:31:21.261 7687-8012/com.companyname.firebaselogin I/flutter: 'package:google_sign_in/google_sign_in.dart': Failed assertion: line 38: 'displayName != ...
10
votes
1
answer
32k
views
How to integrate flutter app with node.js
I am trying to develop a flutter app which is integrated with node.js . But I don't know how to implement it anyone can help me with this
2
votes
1
answer
3k
views
Dart cannot read readAsStringSync
I am using
Dart VM version: 1.24.3 (Wed Dec 13 23:26:59 2017) on "macos_x64"
WITH
Flutter 0.2.8 • channel beta
Framework • revision b397406561 (13 days ago)
Engine • revision c903c217a1
Tools • Dart 2....
1
vote
2
answers
1k
views
Does Flutter Support iOS Features?
I am starting to work on one big project which includes Sirikit, Game Center, Fingerprint, health kit and home kit etc.
So my doubt is can I implement those features & other features which are ...
3
votes
1
answer
1k
views
flutter setJavaScriptEnabled setWebChromeClient
how to enable flutter_webview_plugin 0.1.5 to enable javascript and process javascript came from webpage ? here is the code in android
mWebView = (WebView) findViewById(R.id.activity_main_webview)...
6
votes
1
answer
16k
views
Flutter error: Could not download bcprov-jdk15on.jar (org.bouncycastle:bcprov-jdk15on:1.56)
I'm failing to run my first ever Flutter App. Getting the below error.
Launching lib\main.dart on Android SDK built for x86 in debug mode...
Initializing gradle...
Resolving dependencies...
* Error ...
0
votes
2
answers
4k
views
EXCEPTION CAUGHT BY WIDGETS LIBRARY in flutter app
When i am trying to run my own flutter app in android studio it gives error like this
This is my app screenshot:
This is my logcat:
1
vote
0
answers
152
views
I'm trying to use Firebase DataBase and Firebase Messaging into my Flutter app
I'm trying to use Firebase Database and Firebase Messaging into my Flutter App. But when I include the firebase libraries through pubspec.yaml and try do run it on iOS, I get the following error -
...
2
votes
1
answer
3k
views
Unable to find bundled Java version when installing flutter
Unable to find bundled Java version when installing flutter.
4
votes
2
answers
4k
views
How to resolve flutter doctor issues with home brew?
I am using OS X High Sierra.
I started with the install documentation here:
https://flutter.io/setup-macos/
however I cannot seem to install libimobiledevice and ideviceinstaller.
When I start ...
1
vote
0
answers
584
views
Getting the error while cloning the Flutter SDK from GitHub
Hi i getting this error while cloning the Flutter SDK from GitHub.
By firing this command in terminal on MacBook.
fatal: unable to access 'https://github.com/flutter/flutter.git/': Could not resolve ...
0
votes
1
answer
351
views
Getting error when Installing map_view 0.0.10 plugin in flutter application
I am trying to implement map_view plugin in my flutter application. Followed the instructions provided in the plugin documentation but failed to install the plugin.
I have added the dependency for ...
7
votes
2
answers
8k
views
Does flutter SDK provide any framework to develop apps for Windows phone?
I want to know whether google is planning to support any other platforms other than iOS and Android for Cross platform development using Flutter.
Like React native windows for React native does ...
2
votes
3
answers
3k
views
Flutter Xcode build failure after adding 1st-party dependency
While building an app using Android Studio with the Flutter SDK I decided to get the shared_preferences plugin and play around with it. Soon after, I noticed that although the app was running fine on ...
7
votes
6
answers
10k
views
Flutter Doctor found issue Android_Home
I am trying to setup Flutter in windows 10.
I have:
Android Studio installed
Visual Studio Code
When I run "andoid doctor" in command prompt is shows no errors:
But When I try to configure VSCode ...
4
votes
1
answer
3k
views
Why flutter debug apps shows "Slow Mode" banner?
I have recently started using Flutter ad noticed that apps in debug mode shows "Slow Mode",I know that it shows slow mode only in debug mode and we can remove it by setting debugShowCheckedModeBanner: ...
18
votes
9
answers
56k
views
Flutter not detecting Android SDK
I've been trying to get flutter to detect the Android SDK.
flutter doctor
returns
PS I:\Projects\Flutter\fluttertest\flutterproject> flutter doctor -v
[√] Flutter (Channel beta, v0.1.5, on ...
15
votes
17
answers
54k
views
Flutter: 'package get' has not been run; 'Pub get' has not been run
I dowloaded a Flutter sample code for Catalog from git, which showing me a warning,
'package get' has not been run
'Pub get' has not been run
What does it mean? How to solve it? Should I ignore ...
138
votes
15
answers
229k
views
How to get unique device id in flutter?
In Android we have, Settings.Secure.ANDROID_ID. I do not know the iOS equivalent.
Is there a flutter plugin or a way to get a unique device id for both Android and IOS in flutter?
46
votes
3
answers
15k
views
What's the difference between pub dependencies and dev_dependencies?
What is the difference between dependencies and dev_dependencies in a pubspec.yaml? It seems that when I run pub get the dev_dependencies aren't downloaded.