New post on /r/flutterdev subreddit:
How to create a YouTube app using Flutter? UI Design SpeedCode
https://youtu.be/8YakQw4ThSA
January 21, 2020 at 11:57AM by vilhd
https://ift.tt/2ttPHNH
How to create a YouTube app using Flutter? UI Design SpeedCode
https://youtu.be/8YakQw4ThSA
January 21, 2020 at 11:57AM by vilhd
https://ift.tt/2ttPHNH
YouTube
How to create a Youtube app using Flutter? - UI Design Speedcode - Protorix Code
In this video, we are going a design the youtube app using Flutter.
Let me know in the comments what you think about the design.
I hope this video gets 100 likes!!!
#flutter #flutterui #flutterdesign #flutteruidesign #protorixcode #ui #uidesign #android…
Let me know in the comments what you think about the design.
I hope this video gets 100 likes!!!
#flutter #flutterui #flutterdesign #flutteruidesign #protorixcode #ui #uidesign #android…
New post on /r/flutterdev subreddit:
JSON or MySQL, HOW and From where? In Flutter
Hello there everyone,I don't know whether this question would be allowed here in this community or not but still I will give it a try because i'm really confusedI've searched about this, All i want to know is what actually JSON is and how it will be helpful for me in Flutter development. I came to know it is used to manage API (Literally have no idea how?) Then somebody asked me to develop them an app where they can add data in database via JSON file (I don't know if that is possible).Second thing is about MySQL. I know it is database, but the thing is everybody implemented it in different ways some used PHP (I hate PHP) some didn't. So, little help here what is the best approach to use MySQL in flutter and What about JSON usage in flutter?Thanks A lot for your time :) <3
January 21, 2020 at 02:28PM by m_hamzashakeel
https://ift.tt/36ePawe
JSON or MySQL, HOW and From where? In Flutter
Hello there everyone,I don't know whether this question would be allowed here in this community or not but still I will give it a try because i'm really confusedI've searched about this, All i want to know is what actually JSON is and how it will be helpful for me in Flutter development. I came to know it is used to manage API (Literally have no idea how?) Then somebody asked me to develop them an app where they can add data in database via JSON file (I don't know if that is possible).Second thing is about MySQL. I know it is database, but the thing is everybody implemented it in different ways some used PHP (I hate PHP) some didn't. So, little help here what is the best approach to use MySQL in flutter and What about JSON usage in flutter?Thanks A lot for your time :) <3
January 21, 2020 at 02:28PM by m_hamzashakeel
https://ift.tt/36ePawe
reddit
JSON or MySQL, HOW and From where? In Flutter
Hello there everyone, I don't know whether this question would be allowed here in this community or not but still I will give it a try because...
New post on /r/flutterdev subreddit:
How do I build this Calendar layout/UI?
I am trying to make a calendar for my app and for this,and while I can just use a plugin, i've chosen not to, and I decided to implement it myself. I've chosen this approach: I have a list of text widgets that go from Monday to Sunday
5 6
12 13
19 20
here's a rough sketch: https://imgur.com/a/el2xQdV
January 21, 2020 at 04:41PM by KarmaRekts
https://ift.tt/2GcGfRg
How do I build this Calendar layout/UI?
I am trying to make a calendar for my app and for this,and while I can just use a plugin, i've chosen not to, and I decided to implement it myself. I've chosen this approach: I have a list of text widgets that go from Monday to Sunday
List<Widget> days = [ Text("Sun"),Text("Mon")....Text("Sat") ];Next, I have several lists of all the weekdays
List<Widget> mon = []; List<Widget> tue = []; // and so onNow, i this have method that loops through all the days in the given month, and stores the week days in their respective list. i.e,it would store 1 in wed list, 2 in thurs list (for this month) like so:
for(int i=1;i<=lastDay.day;i++){ var date = new DateTime.utc(dateToday.year,dateToday.month,i); if(date.weekday == 1){ mon.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } else if(date.weekday == 2){ tue.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } else if(date.weekday == 3){ wed.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } else if(date.weekday == 4){ thur.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } else if(date.weekday == 5){ fri.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } else if(date.weekday == 6){ sat.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } else if(date.weekday == 7){ sun.add(FlatButton(onPressed: null, child: Text(date.day.toString()))); } } }So the layout i want to achieve is like this: basically i want to display the weekdays like Sun Mon Tues Wed and so on, and underneath each date, i would like to display the list of weekday(like list mon) like this: Sun Mon ... and so on
5 6
12 13
19 20
here's a rough sketch: https://imgur.com/a/el2xQdV
January 21, 2020 at 04:41PM by KarmaRekts
https://ift.tt/2GcGfRg
Imgur
ui/layout
New post on /r/flutterdev subreddit:
Learning Dart and Flutter
hi.i want to learn dart so than i can make apps with flutter.Now i only know the basics of python(took an codecademy course and made some personal beginner projects/automations).From where should i learn dart?which is the best site,course,book,etc?and how hard is dart to learn?
January 21, 2020 at 05:41PM by vld4k
https://ift.tt/2GbrluQ
Learning Dart and Flutter
hi.i want to learn dart so than i can make apps with flutter.Now i only know the basics of python(took an codecademy course and made some personal beginner projects/automations).From where should i learn dart?which is the best site,course,book,etc?and how hard is dart to learn?
January 21, 2020 at 05:41PM by vld4k
https://ift.tt/2GbrluQ
reddit
Learning Dart and Flutter
hi.i want to learn dart so than i can make apps with flutter.Now i only know the basics of python(took an codecademy course and made some personal...
New post on /r/flutterdev subreddit:
My Space & Time Clock for the Flutter Clock Challenge
I built this for the flutter clock challenge, code is heavily documented with lots of neat dart/flutter tricks.Give it a look @
https://github.com/ahammer/adams_clock
January 21, 2020 at 06:16PM by HaMMeReD
https://ift.tt/38uBL4u
My Space & Time Clock for the Flutter Clock Challenge
I built this for the flutter clock challenge, code is heavily documented with lots of neat dart/flutter tricks.Give it a look @
https://github.com/ahammer/adams_clock
January 21, 2020 at 06:16PM by HaMMeReD
https://ift.tt/38uBL4u
GitHub
ahammer/adams_clock
Flutter Clock. Contribute to ahammer/adams_clock development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
I made a free to use podcast api. Take it if you want.
https://ift.tt/2RcRxLG
January 21, 2020 at 05:57PM by mknabe
https://ift.tt/36gw8pf
I made a free to use podcast api. Take it if you want.
https://ift.tt/2RcRxLG
January 21, 2020 at 05:57PM by mknabe
https://ift.tt/36gw8pf
New post on /r/flutterdev subreddit:
I published my first Flutter plugin and I'd be delighted if you took a look. It's called Clay Containers, and it's an attempt at making implementing neumorpism a bit easier.
You can find it on pub.dev here, or on Github here.Similar plugins tend to rely on the user starting with a particular background color. My plugin attempts to be as customizable as possible while still making the overall process a bit easier.I'm very open to suggestions and/or pull requests.
January 21, 2020 at 06:42PM by mca62511
https://ift.tt/2TJemsb
I published my first Flutter plugin and I'd be delighted if you took a look. It's called Clay Containers, and it's an attempt at making implementing neumorpism a bit easier.
You can find it on pub.dev here, or on Github here.Similar plugins tend to rely on the user starting with a particular background color. My plugin attempts to be as customizable as possible while still making the overall process a bit easier.I'm very open to suggestions and/or pull requests.
January 21, 2020 at 06:42PM by mca62511
https://ift.tt/2TJemsb
Dart packages
clay_containers | Flutter package
Easily create custom neumorphic container widgets for your own unique design.
New post on /r/flutterdev subreddit:
Scrollable stack for Time Table
I want to create design in this link https://dribbble.com/shots/4576289-Time-shifts-Configurationand think about using Stack, however maybe you can recommend better way to create this design or help with implementing my idea with scrollable stack.
January 21, 2020 at 06:36PM by hellomik
https://ift.tt/2vaOQBU
Scrollable stack for Time Table
I want to create design in this link https://dribbble.com/shots/4576289-Time-shifts-Configurationand think about using Stack, however maybe you can recommend better way to create this design or help with implementing my idea with scrollable stack.
January 21, 2020 at 06:36PM by hellomik
https://ift.tt/2vaOQBU
Dribbble
Time-shifts Configuration
Follow us on Twitter & Facebook & Instagram
You're always welcome to visit our amazing Blog
You're always welcome to visit our amazing Blog
New post on /r/flutterdev subreddit:
Time and Space clock - Flutter Clock Challenge
https://ift.tt/37joTOw
January 21, 2020 at 07:22PM by HaMMeReD
https://ift.tt/36eFodp
Time and Space clock - Flutter Clock Challenge
https://ift.tt/37joTOw
January 21, 2020 at 07:22PM by HaMMeReD
https://ift.tt/36eFodp
adams_clock
Time and Space clock
Flutter Clock
New tweet from FlutterDev:
Just going to leave this right here ... pic.twitter.com/yPEzkp91gJ— Google Developers (@googledevs) January 6, 2020
January 21, 2020 at 07:52PM
http://twitter.com/FlutterDev/status/1219694202969190401
Just going to leave this right here ... pic.twitter.com/yPEzkp91gJ— Google Developers (@googledevs) January 6, 2020
January 21, 2020 at 07:52PM
http://twitter.com/FlutterDev/status/1219694202969190401
Twitter
Google Developers
Just going to leave this right here ... https://t.co/yPEzkp91gJ
New post on Flutter Dev Google group:
[Breaking Change Proposal] Element subclasses must call super in forgetChild.
If your app does not subclass Element
[Breaking Change Proposal] Element subclasses must call super in forgetChild.
If your app does not subclass Element
New post on /r/flutterdev subreddit:
converting flutter to electron
hi guysso i have questions that seems stupid maybe for you i have never used flutter before so sorrycan i convert flutter to electron ?? i need a desktop app and flutter desktop still under devif i can't does flutter produce html and css code or what ?? if iam asking because if yes i will take that code and dev with electronty
January 21, 2020 at 08:09PM by younlok
https://ift.tt/2Rd6TQk
converting flutter to electron
hi guysso i have questions that seems stupid maybe for you i have never used flutter before so sorrycan i convert flutter to electron ?? i need a desktop app and flutter desktop still under devif i can't does flutter produce html and css code or what ?? if iam asking because if yes i will take that code and dev with electronty
January 21, 2020 at 08:09PM by younlok
https://ift.tt/2Rd6TQk
reddit
converting flutter to electron
hi guysso i have questions that seems stupid maybe for you i have never used flutter before so sorrycan i convert flutter to electron ??...
New post on /r/flutterdev subreddit:
Flutter Widget In Focus — Chip (Know It All)
https://ift.tt/2GdFSpA
January 21, 2020 at 07:17AM by pinkeshdarji
https://ift.tt/2G9fdKE
Flutter Widget In Focus — Chip (Know It All)
https://ift.tt/2GdFSpA
January 21, 2020 at 07:17AM by pinkeshdarji
https://ift.tt/2G9fdKE
Medium
Flutter Widget In Focus — Chip (Know It All)
Exploring Chip, A small Flutter widget to show relevant information accurately
New post on /r/flutterdev subreddit:
7 more flutter chart types added to Syncfusion's Flutter charts. Now you have 25+ chart types to use in your flutter application.
https://ift.tt/30QGDyF
January 21, 2020 at 08:03AM by michaelprabhu
https://ift.tt/2RfP1V2
7 more flutter chart types added to Syncfusion's Flutter charts. Now you have 25+ chart types to use in your flutter application.
https://ift.tt/30QGDyF
January 21, 2020 at 08:03AM by michaelprabhu
https://ift.tt/2RfP1V2
Syncfusion Blogs
What’s New in 2019 Volume 4: Flutter Charts Widget | Syncfusion Blogs
This article explains the 7 new chart types in the Flutter Charts widget for the 2019 Volume 4 release and some new features available.
New post on /r/flutterdev subreddit:
Flutter Hooks Tutorial – Hide FAB Animation – 100% Widget Code Reuse
https://www.youtube.com/watch?v=LjITiYjB1Q0
January 21, 2020 at 10:49PM by Elixane
https://ift.tt/2untY9W
Flutter Hooks Tutorial – Hide FAB Animation – 100% Widget Code Reuse
https://www.youtube.com/watch?v=LjITiYjB1Q0
January 21, 2020 at 10:49PM by Elixane
https://ift.tt/2untY9W
YouTube
Flutter Hooks Tutorial – Hide FAB Animation – 100% Widget Code Reuse
📗 Written tutorial & starter project 👇👇
https://resocoder.com/flutter-hooks-fab-animation
🎯 The biggest Flutter conference in Europe:
https://fluttereurope.dev
📧 Get Flutter news 📰 and resources:
👉 http://flutter.education
👨💻 Do you write good code? Find…
https://resocoder.com/flutter-hooks-fab-animation
🎯 The biggest Flutter conference in Europe:
https://fluttereurope.dev
📧 Get Flutter news 📰 and resources:
👉 http://flutter.education
👨💻 Do you write good code? Find…
New post on /r/flutterdev subreddit:
From a failed flutter clock attempt, a lib that calculates sunrise and sunset times given coordinates. Implemented a famous algorithm linker on Readme.
https://ift.tt/2GebITo
January 21, 2020 at 10:20PM by renancaraujo
https://ift.tt/36g6BMI
From a failed flutter clock attempt, a lib that calculates sunrise and sunset times given coordinates. Implemented a famous algorithm linker on Readme.
https://ift.tt/2GebITo
January 21, 2020 at 10:20PM by renancaraujo
https://ift.tt/36g6BMI
GitHub
renancaraujo/daylight
Get the sunset and sunrise times for a geolocation without having to access any api. - renancaraujo/daylight
New post on Flutter Dev Google group:
Flutter driver support for Native UI elements (webview)
Hi, Does Flutter have any plan to support native UI elements such as Webview and System dialogs? This is an integration test blocker for apps that use native components. I noticed they are working on an espresso library to allow native UI test to access flutter view but that would require us to
January 22, 2020 at 12:54AM by Ravuth Long
https://ift.tt/30GMyGg
Flutter driver support for Native UI elements (webview)
Hi, Does Flutter have any plan to support native UI elements such as Webview and System dialogs? This is an integration test blocker for apps that use native components. I noticed they are working on an espresso library to allow native UI test to access flutter view but that would require us to
January 22, 2020 at 12:54AM by Ravuth Long
https://ift.tt/30GMyGg
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:
Flutter SQFLITE - ADD TO FAVORITES - PART 2
https://youtu.be/aXECtIMOiBo
January 22, 2020 at 03:13AM by cmcoffee91
https://ift.tt/30MJZ5I
Flutter SQFLITE - ADD TO FAVORITES - PART 2
https://youtu.be/aXECtIMOiBo
January 22, 2020 at 03:13AM by cmcoffee91
https://ift.tt/30MJZ5I
YouTube
Flutter SQFLITE - ADD TO FAVORITES - PART 2
In this video, I show how to choose from a list of items, to add as your favorites, and show them in a favorites list.
We use the sqflite package to save and delete the favorites.
This was a subscriber request. Please comment your tutorial requests below.…
We use the sqflite package to save and delete the favorites.
This was a subscriber request. Please comment your tutorial requests below.…
New post on /r/flutterdev subreddit:
Google Maps for Flutter Web
https://ift.tt/37epDok
January 22, 2020 at 02:53AM by Dazza5000
https://ift.tt/38tXg5y
Google Maps for Flutter Web
https://ift.tt/37epDok
January 22, 2020 at 02:53AM by Dazza5000
https://ift.tt/38tXg5y
New post on /r/flutterdev subreddit:
Announcing DartPad Generator to simplify the process of creating sharable DartPad links 🔧🔗🦸‍♂️ Available as VSCode Extension, CLI, & Mobile app
https://ift.tt/3azWE00
January 22, 2020 at 05:33AM by fleper
https://ift.tt/2NPFFgJ
Announcing DartPad Generator to simplify the process of creating sharable DartPad links 🔧🔗🦸‍♂️ Available as VSCode Extension, CLI, & Mobile app
https://ift.tt/3azWE00
January 22, 2020 at 05:33AM by fleper
https://ift.tt/2NPFFgJ
GitHub
piedcipher/dotslash3.0
:dart: Creating DartPad Snippets Made Easy . Contribute to piedcipher/dotslash3.0 development by creating an account on GitHub.
New tweet from FlutterDev:
📣Flutter developers in Europe! 📣#FlutterEurope conference starts tomorrow! Good luck to all @FlutterEurope organizers, speakers, and attendees.
We love to see the community come together. Have fun!
Check out the talks and speakers ↓ https://t.co/eihCkpNEay— Flutter (@FlutterDev) January 22, 2020
January 22, 2020 at 09:00AM
http://twitter.com/FlutterDev/status/1219892457128640513
📣Flutter developers in Europe! 📣#FlutterEurope conference starts tomorrow! Good luck to all @FlutterEurope organizers, speakers, and attendees.
We love to see the community come together. Have fun!
Check out the talks and speakers ↓ https://t.co/eihCkpNEay— Flutter (@FlutterDev) January 22, 2020
January 22, 2020 at 09:00AM
http://twitter.com/FlutterDev/status/1219892457128640513
Twitter
#fluttereurope hashtag on Twitter
See Tweets about #fluttereurope on Twitter. See what people are saying and join the conversation.