New post on /r/flutterdev subreddit:
Cool Flutter UI for shoes/sneakers e-commerce app. Slivers also used.
https://youtu.be/3LfpKlMZQW0
October 03, 2019 at 06:00AM by rishabh9012
https://ift.tt/2pxQL0w
Cool Flutter UI for shoes/sneakers e-commerce app. Slivers also used.
https://youtu.be/3LfpKlMZQW0
October 03, 2019 at 06:00AM by rishabh9012
https://ift.tt/2pxQL0w
YouTube
Cool Flutter UI for Shoes/Sneaker ecommerce app with Code using Sliver
Code: https://github.com/rishabhdavesar/ui Full tutorial video coming soon. Subscribe if you want to.
New post on /r/flutterdev subreddit:
Help - PIP mode similar to Youtube (Android)
I am trying to create an app in flutter which consists of:Home PageVideo Player PageFrom the Home Page, the user is able to navigate to the video player page. If the video is playing, when the user clicks the back button or swipe down from the video player, I want to minimize the video player to the bottom of the app (while continue playing) and navigate back to the homepage. This is how Youtube works right now.After research, I found two approaches to implement this, but each with its own problems.Use the Android PIP modeProblem:Android PIP mode works on activity basis. Flutter has only one activity. If I were to implement it this way, the entire app will be minimized when I invoke the PIP mode. I want the user to be able to navigate within the app while the video player is in PIP mode.Is there a way to have more than one activity in Flutter? If it is possible, then is it advisable to implement it this way?Create a persistent widgetCreate a widget that persists on navigation similar to this.Problem:I can't wrap my head on how to implement it this way. How do I animate the media player in the nested MaterialApp to minimize to the bottom of the app where the persistent widget is (because it's two separate Material Apps). How do I pass data between them?
October 03, 2019 at 05:32AM by A_Fatal_Dream
https://ift.tt/2oBKWPh
Help - PIP mode similar to Youtube (Android)
I am trying to create an app in flutter which consists of:Home PageVideo Player PageFrom the Home Page, the user is able to navigate to the video player page. If the video is playing, when the user clicks the back button or swipe down from the video player, I want to minimize the video player to the bottom of the app (while continue playing) and navigate back to the homepage. This is how Youtube works right now.After research, I found two approaches to implement this, but each with its own problems.Use the Android PIP modeProblem:Android PIP mode works on activity basis. Flutter has only one activity. If I were to implement it this way, the entire app will be minimized when I invoke the PIP mode. I want the user to be able to navigate within the app while the video player is in PIP mode.Is there a way to have more than one activity in Flutter? If it is possible, then is it advisable to implement it this way?Create a persistent widgetCreate a widget that persists on navigation similar to this.Problem:I can't wrap my head on how to implement it this way. How do I animate the media player in the nested MaterialApp to minimize to the bottom of the app where the persistent widget is (because it's two separate Material Apps). How do I pass data between them?
October 03, 2019 at 05:32AM by A_Fatal_Dream
https://ift.tt/2oBKWPh
Stack Overflow
Permanent view with navigation bar in Flutter
I have a scenario where I have 2 views:
View 1
View 2
On a button press from View 1, Navigator.of(context).pushnamed('/view2') is invoked, which pushes View 2 to the screen. In this case, the ent...
View 1
View 2
On a button press from View 1, Navigator.of(context).pushnamed('/view2') is invoked, which pushes View 2 to the screen. In this case, the ent...
New post on /r/flutterdev subreddit:
How can I handle a snapshot where a field may be null?
I am using Flutter and FirestoreI get a snapshot to build a ListView then ListTilesThe app displays errors if a field does not exist for a documentRight now I get the snapshot, then I check if any of the fields are null, and if null I set a value of "N/A"Is there a better way to handle this?My code is below
October 03, 2019 at 06:51AM by purplegreencab
https://ift.tt/2nZMSAU
How can I handle a snapshot where a field may be null?
I am using Flutter and FirestoreI get a snapshot to build a ListView then ListTilesThe app displays errors if a field does not exist for a documentRight now I get the snapshot, then I check if any of the fields are null, and if null I set a value of "N/A"Is there a better way to handle this?My code is below
return new ListView( children: snapshot.data.documents.map((DocumentSnapshot document) { var s_code = document['code']; var s_first_name = document['first_name']; var s_last_name = document['last_name']; var s_role = document['role']; var s_phone_number = document['phone_number']; var s_photo = document['photo']; var salesman = { "code": s_code, "first_name": s_first_name, "last_name": s_last_name, "role": s_role, "phone_number": s_phone_number, "photo": s_photo }; salesman.forEach((k, v) { if (v == null) { salesman[k] = "N/A"; } }); return new ListTile( onTap: () { //Go to the next screen with Navigator.push }, contentPadding: EdgeInsets.all(10.0), leading: CircleAvatar( backgroundImage: NetworkImage(s_photo), ), title: Text(salesman["code"]), subtitle: Column( mainAxisAlignment: MainAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start, children: <Widget>[ Text(toBeginningOfSentenceCase(s_first_name) + " " + toBeginningOfSentenceCase(s_last_name)), Text(s_phone_number), ], ), trailing: Icon(Icons.keyboard_arrow_right), ); }).toList(), );
October 03, 2019 at 06:51AM by purplegreencab
https://ift.tt/2nZMSAU
reddit
How can I handle a snapshot where a field may be null?
* I am using Flutter and Firestore * I get a snapshot to build a ListView then ListTiles * The app displays errors if a field does not exist for a...
New post on /r/flutterdev subreddit:
Refactoring a Flutter Project — a Story About Progression and Decisions
https://ift.tt/2oIcWAu
October 03, 2019 at 06:41AM by Vanethos
https://ift.tt/2nPncal
Refactoring a Flutter Project — a Story About Progression and Decisions
https://ift.tt/2oIcWAu
October 03, 2019 at 06:41AM by Vanethos
https://ift.tt/2nPncal
Medium
Refactoring a Flutter Project — a Story About Progression and Decisions
Refactor is never easy, nor it is entering a new technology or a specific architecture. How can we find the best solution to our problems?
New post on Flutter Dev Google group:
flutter expandable
can we create expandableList like as a bootstrap accordion in flutter?
October 03, 2019 at 09:16AM by shree krishna
https://ift.tt/2pvHDJD
flutter expandable
can we create expandableList like as a bootstrap accordion in flutter?
October 03, 2019 at 09:16AM by shree krishna
https://ift.tt/2pvHDJD
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:
Why we think Flutter will help us scale mobile development at Nubank
https://ift.tt/2p2bZn0
October 03, 2019 at 10:41AM by EngineerScientist
https://ift.tt/2oIxAAN
Why we think Flutter will help us scale mobile development at Nubank
https://ift.tt/2p2bZn0
October 03, 2019 at 10:41AM by EngineerScientist
https://ift.tt/2oIxAAN
Medium
Why we think Flutter will help us scale mobile development at Nubank
An overview of the criteria and study we conducted to decide to use Flutter as our main technology for cross-platform mobile development.
New post on /r/flutterdev subreddit:
Flutter web image picker
https://ift.tt/2nS09vC
October 03, 2019 at 08:36AM by AlvaroVasconcelos
https://ift.tt/2nQK7SF
Flutter web image picker
https://ift.tt/2nS09vC
October 03, 2019 at 08:36AM by AlvaroVasconcelos
https://ift.tt/2nQK7SF
Dart packages
flutter_web_image_picker | Flutter Package
A package designed for input images on web flutter.
New post on /r/flutterdev subreddit:
Project help
I need project for students attendance management
October 03, 2019 at 11:21AM by Rahul4884
https://ift.tt/2nVcLSJ
Project help
I need project for students attendance management
October 03, 2019 at 11:21AM by Rahul4884
https://ift.tt/2nVcLSJ
reddit
Project help
I need project for students attendance management
New post on Flutter Dev Google group:
multipartfile upload in flutter web
Hello all, I am trying to upload a file using flutter web. Looking around the net I found I should do that via multipartfile of the html package. But dart:html doesn't contain a MultipartFile class. Can anyone redirect me right in this? Thanks, Andrea
October 03, 2019 at 02:54PM by andrea antonello
https://ift.tt/2oaagfg
multipartfile upload in flutter web
Hello all, I am trying to upload a file using flutter web. Looking around the net I found I should do that via multipartfile of the html package. But dart:html doesn't contain a MultipartFile class. Can anyone redirect me right in this? Thanks, Andrea
October 03, 2019 at 02:54PM by andrea antonello
https://ift.tt/2oaagfg
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 Flutter Dev Google group:
Flutter - hand palm lines detection / scanning.
Hello, I was wondering what's the best way to deal with hand palm lines detection. Could it possible using firebase ML kit ? or do I have to use open cv for that ? Help is appreciated
October 03, 2019 at 03:33PM by Cesar Nasr
https://ift.tt/2nYmAzf
Flutter - hand palm lines detection / scanning.
Hello, I was wondering what's the best way to deal with hand palm lines detection. Could it possible using firebase ML kit ? or do I have to use open cv for that ? Help is appreciated
October 03, 2019 at 03:33PM by Cesar Nasr
https://ift.tt/2nYmAzf
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 Flutter Dev Google group:
Contribute to flutter widgets repo
Hello developers, Building a stack of widgets that be helpful collection for benginners and developers to look at single place. Please help contributing to this flutter widgets project. Happy hacking! Thanks in advance. It can dynamic widgets, animations, simple widget, add with documentation.
October 03, 2019 at 03:36PM by prakash king
https://ift.tt/2pHzIJt
Contribute to flutter widgets repo
Hello developers, Building a stack of widgets that be helpful collection for benginners and developers to look at single place. Please help contributing to this flutter widgets project. Happy hacking! Thanks in advance. It can dynamic widgets, animations, simple widget, add with documentation.
October 03, 2019 at 03:36PM by prakash king
https://ift.tt/2pHzIJt
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:
How to make dialog box scrollable?
I have a RaisedButton which when pressed shows a dialog box.Dialog Box looks fine when mobile is in Portrait mode but in Landscape mode pixels get overflowed.Any idea how to tackle this problem?P.S. Yes i am a newbie :-)
October 03, 2019 at 03:23PM by bawaaal
https://ift.tt/2pCyuz2
How to make dialog box scrollable?
I have a RaisedButton which when pressed shows a dialog box.Dialog Box looks fine when mobile is in Portrait mode but in Landscape mode pixels get overflowed.Any idea how to tackle this problem?P.S. Yes i am a newbie :-)
October 03, 2019 at 03:23PM by bawaaal
https://ift.tt/2pCyuz2
reddit
How to make dialog box scrollable?
A subreddit related to Google's new UI framework.
New post on /r/flutterdev subreddit:
Moor 2.0 is out with a builtin sql IDE, easier APIs and experimental ffi support!
https://ift.tt/2ndr6JE
October 03, 2019 at 03:47PM by simolus3
https://ift.tt/2oIYOXT
Moor 2.0 is out with a builtin sql IDE, easier APIs and experimental ffi support!
https://ift.tt/2ndr6JE
October 03, 2019 at 03:47PM by simolus3
https://ift.tt/2oIYOXT
Moor
Version 2.0
#td-cover-block-0 { background-image: url(/v2/background_hu7281036dfe00b13be2555bb3a33cd332_55169_960x540_fill_catmullrom_top_2.png); } @media only screen and (min-width: 1200px) { #td-cover-block-0 { background-image: url(/v2/background_hu7281036dfe00b1…
New post on /r/flutterdev subreddit:
Floop DynamicWidget — Two in one class: Widget + “State”
https://ift.tt/351YbJF
October 03, 2019 at 03:46PM by Elixane
https://ift.tt/32TX1Oq
Floop DynamicWidget — Two in one class: Widget + “State”
https://ift.tt/351YbJF
October 03, 2019 at 03:46PM by Elixane
https://ift.tt/32TX1Oq
Medium
Floop DynamicWidget — Two in one class: Widget + “State”
A widget that has it’s own “state” in the form of a Map of dynamic values. There are practical consequences about having a mutable Widget…
New post on /r/flutterdev subreddit:
Creating a Radar
I thought about creating a 'radar' (a map where events, users, ... Around you are shown). Is this possible and if yes how would I go about it.
October 03, 2019 at 05:14PM by Green_Opposite
https://ift.tt/30JvcGY
Creating a Radar
I thought about creating a 'radar' (a map where events, users, ... Around you are shown). Is this possible and if yes how would I go about it.
October 03, 2019 at 05:14PM by Green_Opposite
https://ift.tt/30JvcGY
reddit
Creating a Radar
I thought about creating a 'radar' (a map where events, users, ... Around you are shown). Is this possible and if yes how would I go about it.
New post on /r/flutterdev subreddit:
ListTile (Flutter Widget of the Week)
https://www.youtube.com/watch?v=l8dj0yPBvgQ&feature=youtu.be
October 03, 2019 at 06:02PM by MarkOSullivan
https://ift.tt/32WOqL1
ListTile (Flutter Widget of the Week)
https://www.youtube.com/watch?v=l8dj0yPBvgQ&feature=youtu.be
October 03, 2019 at 06:02PM by MarkOSullivan
https://ift.tt/32WOqL1
YouTube
ListTile (Flutter Widget of the Week)
Why spend hours working out the perfect item layout with rows, columns, containers, and various amounts of spacing and styling when you could just use a ListTile! ListTile implements the material design pattern for list items for you, leaving you to just…
New post on /r/flutterdev subreddit:
How to stretch an Image in expanded widget?
I have one image wrapped in Expanded.But its only filling 3/4th of the container in its full, when I set the alignment from the top.center. My task now is to scale or stretch the image to fill up the whole widget. I tried Align + Aspect, BoxFit and other such but nothing worked.
October 03, 2019 at 05:59PM by gradebee
https://ift.tt/2ABKGT7
How to stretch an Image in expanded widget?
I have one image wrapped in Expanded.But its only filling 3/4th of the container in its full, when I set the alignment from the top.center. My task now is to scale or stretch the image to fill up the whole widget. I tried Align + Aspect, BoxFit and other such but nothing worked.
October 03, 2019 at 05:59PM by gradebee
https://ift.tt/2ABKGT7
reddit
How to stretch an Image in expanded widget?
A subreddit for Google's crossplatform UI toolkit.
New tweet from FlutterDev:
👍 🏆Quickly create beautiful list items!
ListTile implements the @materialdesign pattern for list items so you only have to think about what goes in it. Just give ListTile some text and icons, and let it handle the rest!
More #WidgetoftheWeek → https://t.co/SjDCjgnJGe pic.twitter.com/rJk7tdrqDw— Flutter (@FlutterDev) October 3, 2019
October 03, 2019 at 06:37PM
http://twitter.com/FlutterDev/status/1179797618261512193
👍 🏆Quickly create beautiful list items!
ListTile implements the @materialdesign pattern for list items so you only have to think about what goes in it. Just give ListTile some text and icons, and let it handle the rest!
More #WidgetoftheWeek → https://t.co/SjDCjgnJGe pic.twitter.com/rJk7tdrqDw— Flutter (@FlutterDev) October 3, 2019
October 03, 2019 at 06:37PM
http://twitter.com/FlutterDev/status/1179797618261512193
Twitter
Material Design (@materialdesign) | Twitter
The latest Tweets from Material Design (@materialdesign). Material is a design system – backed by open-source code – that helps teams build high-quality digital experiences. Google, Mountain View, CA
New post on Flutter Dev Google group:
Any flutter or Google developer from Kerala India please give me a mail
October 03, 2019 at 08:06PM by Vishnu Suresh
https://ift.tt/2OilUQ0
Any flutter or Google developer from Kerala India please give me a mail
October 03, 2019 at 08:06PM by Vishnu Suresh
https://ift.tt/2OilUQ0
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 Flutter Dev Google group:
Any flutter dev from mumbai join this group .Soon we are starting monthly meetup
https://ift.tt/2OfucYD
October 03, 2019 at 08:24PM by Rahul Devanavar
https://ift.tt/2AC9Lxc
Any flutter dev from mumbai join this group .Soon we are starting monthly meetup
https://ift.tt/2OfucYD
October 03, 2019 at 08:24PM by Rahul Devanavar
https://ift.tt/2AC9Lxc
Facebook
Log in to Facebook | Facebook
Log in to Facebook to start sharing and connecting with your friends, family and people you know.
New post on /r/flutterdev subreddit:
Flutter Tattoo studio App UI Concept - Speed Code
https://youtu.be/81uanWt8W4c
October 03, 2019 at 08:17PM by EngineerScientist
https://ift.tt/2Ma5tCn
Flutter Tattoo studio App UI Concept - Speed Code
https://youtu.be/81uanWt8W4c
October 03, 2019 at 08:17PM by EngineerScientist
https://ift.tt/2Ma5tCn
YouTube
Flutter Tattoo studio App UI Concept - Speed Code
Thanks for Watching :)
Design Credit: https://dribbble.com/shots/7239766-NXT-LVL-Tattoo-Studio-App-Free-Download
Music Credit:
BE FRANKY: https://www.youtube.com/BeFrankyMusic
Design Credit: https://dribbble.com/shots/7239766-NXT-LVL-Tattoo-Studio-App-Free-Download
Music Credit:
BE FRANKY: https://www.youtube.com/BeFrankyMusic