New post on /r/flutterdev subreddit:
What's your opinion about code generation?
Personally I don't like it, coming from javascript, we have amazing tools like webpack and more versatile annotations, making code generation more of a build time thing, and not spitting the output next to the code and having to commit it.What are your thoughts about this?
September 06, 2019 at 04:32AM by unimonkiez
https://ift.tt/2PPCCbB
What's your opinion about code generation?
Personally I don't like it, coming from javascript, we have amazing tools like webpack and more versatile annotations, making code generation more of a build time thing, and not spitting the output next to the code and having to commit it.What are your thoughts about this?
September 06, 2019 at 04:32AM by unimonkiez
https://ift.tt/2PPCCbB
reddit
What's your opinion about code generation?
Personally I don't like it, coming from javascript, we have amazing tools like webpack and more versatile annotations, making code generation more...
New post on /r/flutterdev subreddit:
Flutter tutorial: Plant Shop UI
https://ift.tt/2zXi0DE
September 06, 2019 at 08:47AM by cybdom
https://ift.tt/2ZxaTB4
Flutter tutorial: Plant Shop UI
https://ift.tt/2zXi0DE
September 06, 2019 at 08:47AM by cybdom
https://ift.tt/2ZxaTB4
Cybdom
Flutter tutorial: Plant Shop UI - Cybdom
Are you a fan of plants? Because today we will replicate a minimalist Plant shop UI that looks really great.
New post on Flutter Dev Google group:
Is there a way to do geometric operations (Union, substract, etc) on google_maps_flutter polygons?
I am trying to build an app where the ability to do geometric operations on map polygons is very important. what I am trying to achieve is as follows: 1. I have shapefiles created with ArcMap which I then converted to json files. 2. I wish to use the data from the json files (by parsing them) to
September 06, 2019 at 10:30AM by Surya Nigrat Datunsolang
https://ift.tt/2zZytHv
Is there a way to do geometric operations (Union, substract, etc) on google_maps_flutter polygons?
I am trying to build an app where the ability to do geometric operations on map polygons is very important. what I am trying to achieve is as follows: 1. I have shapefiles created with ArcMap which I then converted to json files. 2. I wish to use the data from the json files (by parsing them) to
September 06, 2019 at 10:30AM by Surya Nigrat Datunsolang
https://ift.tt/2zZytHv
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Returning Value from Future functions to onPressed method
I want to use value returned by Future method and depending on that I want push new routes into the navigator.Future FunctionFuture<int> signInWithGoogle() async {try {
final GoogleSignInAccount googleSignInAccount = await googleSignIn.signIn();
final GoogleSignInAuthentication googleSignInAuthentication = await googleSignInAccount
.authentication;
final AuthCredential credential = GoogleAuthProvider.getCredential(
accessToken: googleSignInAuthentication.accessToken,
idToken: googleSignInAuthentication.idToken,
);
final AuthResult result = await _auth.signInWithCredential(credential);
final FirebaseUser user = result.user;
assert(!user.isAnonymous);
assert(await user.getIdToken() != null);
final FirebaseUser currentUser = await _auth.currentUser();
assert(user.uid == currentUser.uid);
if(result.additionalUserInfo.isNewUser){
return 0;
}
else {
name = user.displayName;
email = user.email;
imageUrl = user.photoUrl;
return 1;
}
}
catch(e){
print(e.message);
return -1;
}
}onPressedonPressed: () {
signInWithGoogle().whenComplete(() {How to use the value returned here??});
September 06, 2019 at 12:36PM by deepaktiwari_88
https://ift.tt/2LxSABO
Returning Value from Future functions to onPressed method
I want to use value returned by Future method and depending on that I want push new routes into the navigator.Future FunctionFuture<int> signInWithGoogle() async {try {
final GoogleSignInAccount googleSignInAccount = await googleSignIn.signIn();
final GoogleSignInAuthentication googleSignInAuthentication = await googleSignInAccount
.authentication;
final AuthCredential credential = GoogleAuthProvider.getCredential(
accessToken: googleSignInAuthentication.accessToken,
idToken: googleSignInAuthentication.idToken,
);
final AuthResult result = await _auth.signInWithCredential(credential);
final FirebaseUser user = result.user;
assert(!user.isAnonymous);
assert(await user.getIdToken() != null);
final FirebaseUser currentUser = await _auth.currentUser();
assert(user.uid == currentUser.uid);
if(result.additionalUserInfo.isNewUser){
return 0;
}
else {
name = user.displayName;
email = user.email;
imageUrl = user.photoUrl;
return 1;
}
}
catch(e){
print(e.message);
return -1;
}
}onPressedonPressed: () {
signInWithGoogle().whenComplete(() {How to use the value returned here??});
September 06, 2019 at 12:36PM by deepaktiwari_88
https://ift.tt/2LxSABO
reddit
Returning Value from Future functions to onPressed method
I want to use value returned by Future method and depending on that I want push new routes into the navigator. **Future...
New post on /r/flutterdev subreddit:
What do you call a Flutter developer?
From what I've seen python developers call themselves pythonistas and golang developers call themselves gophers.Is there something Flutter devs like to refer as?
September 06, 2019 at 12:54PM by dontmissth
https://ift.tt/2PQOuKC
What do you call a Flutter developer?
From what I've seen python developers call themselves pythonistas and golang developers call themselves gophers.Is there something Flutter devs like to refer as?
September 06, 2019 at 12:54PM by dontmissth
https://ift.tt/2PQOuKC
reddit
What do you call a Flutter developer?
A subreddit for Google's crossplatform UI toolkit.
New post on /r/flutterdev subreddit:
What does r/programming have against flutter?
Every post i see over there about flutter just seems to get 90% hate in the comments saying every blog posted is an advertisement, I'm curious where all the hate came from. I've been using flutter and really enjoyed it! Is it just a hate google thing or?
September 06, 2019 at 01:32PM by Dibza
https://ift.tt/2PRyBDL
What does r/programming have against flutter?
Every post i see over there about flutter just seems to get 90% hate in the comments saying every blog posted is an advertisement, I'm curious where all the hate came from. I've been using flutter and really enjoyed it! Is it just a hate google thing or?
September 06, 2019 at 01:32PM by Dibza
https://ift.tt/2PRyBDL
reddit
What does r/programming have against flutter?
Every post i see over there about flutter just seems to get 90% hate in the comments saying every blog posted is an advertisement, I'm curious...
New post on /r/flutterdev subreddit:
Live Coding Design Challenge in Flutter - SY Travel Animation - part 2/2
https://youtu.be/Uvi4j2_d19k
September 06, 2019 at 02:19PM by EngineerScientist
https://ift.tt/2ZJQ0SA
Live Coding Design Challenge in Flutter - SY Travel Animation - part 2/2
https://youtu.be/Uvi4j2_d19k
September 06, 2019 at 02:19PM by EngineerScientist
https://ift.tt/2ZJQ0SA
YouTube
Live Coding Design Challenge in Flutter - SY Travel Animation - part 2/2
This is the second part of me live coding SY Travel Animation challenge using Flutter.
👉Part 1: https://www.youtube.com/watch?v=NmA5X4go3ns
👉More Design Challenges in Flutter: https://fidev.io/design-challenges/ 👈
👉Designed by Anton Skvortsov (https:/…
👉Part 1: https://www.youtube.com/watch?v=NmA5X4go3ns
👉More Design Challenges in Flutter: https://fidev.io/design-challenges/ 👈
👉Designed by Anton Skvortsov (https:/…
New post on /r/flutterdev subreddit:
An open-source GitHub Flutter client app
https://ift.tt/2ZI9KG9
September 06, 2019 at 02:13PM by codinglatte
https://ift.tt/2LrwAsm
An open-source GitHub Flutter client app
https://ift.tt/2ZI9KG9
September 06, 2019 at 02:13PM by codinglatte
https://ift.tt/2LrwAsm
Flutter Awesome
An open-source GitHub Flutter client app
An open-source GitHub Flutter client app.
New post on /r/flutterdev subreddit:
XML Layout for Flutter : Brings Angular's style to Flutter!
https://ift.tt/2ZzOAut
September 06, 2019 at 03:03PM by EngineerScientist
https://ift.tt/2ZUPIUI
XML Layout for Flutter : Brings Angular's style to Flutter!
https://ift.tt/2ZzOAut
September 06, 2019 at 03:03PM by EngineerScientist
https://ift.tt/2ZUPIUI
Visualstudio
XML Layout for Flutter - Visual Studio Marketplace
Extension for Visual Studio Code - XML Layout for Flutter. Brings Angular's style to Flutter!
New post on /r/flutterdev subreddit:
A Showcase for Passionate Flutter Developers | Flutter Pro
https://flutterpro.dev
September 06, 2019 at 02:24PM by hillel369
https://ift.tt/2HQmXSY
A Showcase for Passionate Flutter Developers | Flutter Pro
https://flutterpro.dev
September 06, 2019 at 02:24PM by hillel369
https://ift.tt/2HQmXSY
Flutter Pro
A Showcase for Passionate Flutter Developers | Flutter Pro
Profiles are sourced from FlutterX, Flutter Events and It's All Widgets!
New post on /r/flutterdev subreddit:
Wanted: Examples & Designs for a settings page/view
Hello,I actually want to ask you about some flutter examples.I got some recommendations to check several flutter community platforms for examples and also some pages for UI designs. I am looking forward to start an app with a friend of mine. We want to write it in flutter. The app itself is community driven. For this we want to create a profile for the user.For the user settings we want to create a page/view where the user can edit his information. That could be a list of label and textfield pairs but it could also be displayed in some other way (open for suggestions).My question now: I did not find any examples, scribbles or screen designs about a good and modern settings page. Neither I found coding examples. Do you guys have or know any pages that offer some design and code examples for a good settings page?
September 06, 2019 at 04:55PM by lukasbash
https://ift.tt/2ZAhIlk
Wanted: Examples & Designs for a settings page/view
Hello,I actually want to ask you about some flutter examples.I got some recommendations to check several flutter community platforms for examples and also some pages for UI designs. I am looking forward to start an app with a friend of mine. We want to write it in flutter. The app itself is community driven. For this we want to create a profile for the user.For the user settings we want to create a page/view where the user can edit his information. That could be a list of label and textfield pairs but it could also be displayed in some other way (open for suggestions).My question now: I did not find any examples, scribbles or screen designs about a good and modern settings page. Neither I found coding examples. Do you guys have or know any pages that offer some design and code examples for a good settings page?
September 06, 2019 at 04:55PM by lukasbash
https://ift.tt/2ZAhIlk
reddit
Wanted: Examples & Designs for a settings page/view
Hello, I actually want to ask you about some flutter examples. I got some recommendations to check several flutter community platforms for...
New post on Flutter Dev Google group:
Best Architecture for complex applications
Which one is the best architecture for one of my complex application that I am gonna develop using flutter cross-platform framework?
September 06, 2019 at 05:27PM by Akhilesh Mourya
https://ift.tt/2ZRMeCG
Best Architecture for complex applications
Which one is the best architecture for one of my complex application that I am gonna develop using flutter cross-platform framework?
September 06, 2019 at 05:27PM by Akhilesh Mourya
https://ift.tt/2ZRMeCG
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New tweet from FlutterDev:
🤸‍Follow the latest and greatest projects from the Flutter team! #FlutterFriday
Visit the projects tab on GitHub → https://t.co/c5elxoFSLR pic.twitter.com/blXrotI9o0— Flutter (@FlutterDev) September 6, 2019
September 06, 2019 at 06:02PM
http://twitter.com/FlutterDev/status/1170004461550542848
🤸‍Follow the latest and greatest projects from the Flutter team! #FlutterFriday
Visit the projects tab on GitHub → https://t.co/c5elxoFSLR pic.twitter.com/blXrotI9o0— Flutter (@FlutterDev) September 6, 2019
September 06, 2019 at 06:02PM
http://twitter.com/FlutterDev/status/1170004461550542848
Twitter
#flutterfriday hashtag on Twitter
35m ago @FlutterDev tweeted: "✳️ Early access to features like HotUI a.." - read what others are saying and join the conversation.
New post on /r/flutterdev subreddit:
🤸‍Follow the latest and greatest projects from the Flutter team!
https://ift.tt/2ZUluBt
September 06, 2019 at 06:06PM by EngineerScientist
https://ift.tt/2HQJhfe
🤸‍Follow the latest and greatest projects from the Flutter team!
https://ift.tt/2ZUluBt
September 06, 2019 at 06:06PM by EngineerScientist
https://ift.tt/2HQJhfe
GitHub
flutter/flutter
Flutter makes it easy and fast to build beautiful mobile apps. - flutter/flutter
New post on /r/flutterdev subreddit:
Tutorial on using flutter_bloc with JWT authentication
Hi guys,Is there any tutorial/course/example on using flutter_bloc package and JWT based authentication instead of Firebase? Like getting JWT, storing it, reusing it for requests, refreshing the JWT token and etc. I found no resources on this topic... Any info is welcome.Thanks
September 06, 2019 at 07:11PM by Spectarion
https://ift.tt/3105Y8d
Tutorial on using flutter_bloc with JWT authentication
Hi guys,Is there any tutorial/course/example on using flutter_bloc package and JWT based authentication instead of Firebase? Like getting JWT, storing it, reusing it for requests, refreshing the JWT token and etc. I found no resources on this topic... Any info is welcome.Thanks
September 06, 2019 at 07:11PM by Spectarion
https://ift.tt/3105Y8d
Dart packages
flutter_bloc | Flutter package
Flutter widgets that make it easy to implement the BLoC (Business Logic Component) design pattern. Built to be used with the bloc state management package.
New post on /r/flutterdev subreddit:
multi_charts - A flutter package that provides different types of charts written in Dart.
Package link - pub.dev/packages/multi_chartsGithub Repo - https://github.com/intkhabahmed/multi_chartsTry the package and give your suggestions and feedback. Currently it supports only Radar Chart, will add more in the future.Please share and ⭐ the repository and show your support. If you want to contribute, fork the repo and send your pull requests.
September 06, 2019 at 06:56PM by intkhabahmed
https://ift.tt/2ZyDuG2
multi_charts - A flutter package that provides different types of charts written in Dart.
Package link - pub.dev/packages/multi_chartsGithub Repo - https://github.com/intkhabahmed/multi_chartsTry the package and give your suggestions and feedback. Currently it supports only Radar Chart, will add more in the future.Please share and ⭐ the repository and show your support. If you want to contribute, fork the repo and send your pull requests.
September 06, 2019 at 06:56PM by intkhabahmed
https://ift.tt/2ZyDuG2
Dart packages
multi_charts | Flutter package
A Flutter package providing different types of charts built purely in dart.
New post on /r/flutterdev subreddit:
Just completed my first proper app! It's an app to browse r/showerthoughts. Need your feedback.
https://ift.tt/2xrsF8g
September 06, 2019 at 06:51PM by Emil14833
https://ift.tt/30ZTGNb
Just completed my first proper app! It's an app to browse r/showerthoughts. Need your feedback.
https://ift.tt/2xrsF8g
September 06, 2019 at 06:51PM by Emil14833
https://ift.tt/30ZTGNb
Google Play
Shower Thoughts - Apps on Google Play
This app is made by me, a private individual, as part of my portfolio. If you are looking for a flutter developer (developer for both iOS and Android), please send me an email at emil14833@gmail.com.
New post on /r/flutterdev subreddit:
Creating BottomNavigationBar with different screens.
Hello! I'm really new to Flutter, I'm trying to create an application with few screens.I followed a tutorial and created a BottomNavigationBar, Instead of the Text widgets in the tutorial, I want to add the screens of the app (for example, Home and Settings screens), but I can't find out how, Tried to just replace it but I get an error.
September 06, 2019 at 10:22PM by ZwapDawg
https://ift.tt/2N0gEAp
Creating BottomNavigationBar with different screens.
Hello! I'm really new to Flutter, I'm trying to create an application with few screens.I followed a tutorial and created a BottomNavigationBar, Instead of the Text widgets in the tutorial, I want to add the screens of the app (for example, Home and Settings screens), but I can't find out how, Tried to just replace it but I get an error.
The element type 'SettingsState' can't be assigned to the list type 'Widget'.dart(list_element_type_not_assignable)
This is what I have so far:This is how I created the Settings Screen (or at least tried):https://pastebin.com/GSRBxLkpAnd this is the HomePage that came with the starter app (modified a little) :https://pastebin.com/K57gg1ygAs I said, I'm really new to Flutter so I don't really know the Syntax and Keywords so searching Google didn't really helped.September 06, 2019 at 10:22PM by ZwapDawg
https://ift.tt/2N0gEAp
New post on /r/flutterdev subreddit:
How to build a native cross platform project with Flutter
https://ift.tt/2UFzOwv
September 07, 2019 at 01:42AM by Elixane
https://ift.tt/2ZXMnEl
How to build a native cross platform project with Flutter
https://ift.tt/2UFzOwv
September 07, 2019 at 01:42AM by Elixane
https://ift.tt/2ZXMnEl
Medium
How to build a native cross platform project with Flutter
You can find the final project here.
New post on /r/flutterdev subreddit:
sliding_panel package available!
https://pub.dev/packages/sliding_panelCheckout the all new sliding_panel package!Now create slidable widget, just as you want it!#FirstFlutterCreation#FirstOpenSourceThanks!
September 07, 2019 at 09:21AM by RaviKavaiya
https://ift.tt/311VZzf
sliding_panel package available!
https://pub.dev/packages/sliding_panelCheckout the all new sliding_panel package!Now create slidable widget, just as you want it!#FirstFlutterCreation#FirstOpenSourceThanks!
September 07, 2019 at 09:21AM by RaviKavaiya
https://ift.tt/311VZzf
Dart packages
sliding_panel | Flutter Package
The most customisable bottom sliding panel you can find on pub.dev. Just as you want it!