New post on /r/flutterdev subreddit:
Double SliverAppBar with SliverList for custom scrolling effect
https://ift.tt/2EGySRq
December 22, 2019 at 01:25PM by Deimantasa
https://ift.tt/2Q9sac7
Double SliverAppBar with SliverList for custom scrolling effect
https://ift.tt/2EGySRq
December 22, 2019 at 01:25PM by Deimantasa
https://ift.tt/2Q9sac7
Medium
Double Sliver AppBar in Flutter
After releasing my brand new and fully revamped RentMi v3, I got many enquiries from fellow developers on how did I do this fancy double…
New post on /r/flutterdev subreddit:
Hive v1.2.0 supports relationships, inheritance and more.
I just published a new version of Hive (key value database for Flutter) and wanted to show you how relationships work:
December 22, 2019 at 03:31PM by leisim
https://ift.tt/2So39N7
Hive v1.2.0 supports relationships, inheritance and more.
I just published a new version of Hive (key value database for Flutter) and wanted to show you how relationships work:
class Person extends HiveObject { String name; HiveList<Person> friends; Person(this.name); } void main() { var persons = Hive.box<Person>('persons'); var mario = Person('Mario'); var luna = Person('Luna'); var alex = Person('Alex'); persons.addAll([mario, luna, alex]); mario.friends = HiveList(persons); // Create a HiveList mario.friends.addAll([luna, alex]); // Add Luna and Alex to Mario's friends mario.save(); // Persist the changes print(mario.friends); // [Luna, Alex] luna.delete(); // Remove Luna from Hive print(mario.friends); // [Alex] (HiveList updates automatically) }You can also find this example in the documentation.The new version also allows abstract HiveObjects and supports inheritance between HiveObjects.
December 22, 2019 at 03:31PM by leisim
https://ift.tt/2So39N7
GitHub
GitHub - isar/hive: Lightweight and blazing fast key-value database written in pure Dart.
Lightweight and blazing fast key-value database written in pure Dart. - isar/hive
New post on /r/flutterdev subreddit:
Awesome Onboarding Experience | Flutter Library of the Week | EP-03
https://www.youtube.com/watch?v=R2HNppJDp2Q&feature=share
December 22, 2019 at 03:41PM by imthepk
https://ift.tt/34LodiX
Awesome Onboarding Experience | Flutter Library of the Week | EP-03
https://www.youtube.com/watch?v=R2HNppJDp2Q&feature=share
December 22, 2019 at 03:41PM by imthepk
https://ift.tt/34LodiX
YouTube
Awesome Onboarding Experience | Flutter Library of the Week | EP-03
In this video, I will explain how to give awesome onboarding experience in your app. #Library #Flutter #Onboarding Please give stars for this project on git ...
New post on /r/flutterdev subreddit:
Just pushed get_it V3.1.0
Just pushed get_it V3.1.0 with some bug fixes for edge cases and a new function to reset LazySingletonshttps://pub.dev/packages/get\_itBtw you can now like packages you like :-)
December 22, 2019 at 04:43PM by escamoteur
https://ift.tt/370MLpA
Just pushed get_it V3.1.0
Just pushed get_it V3.1.0 with some bug fixes for edge cases and a new function to reset LazySingletonshttps://pub.dev/packages/get\_itBtw you can now like packages you like :-)
December 22, 2019 at 04:43PM by escamoteur
https://ift.tt/370MLpA
Dart packages
Search results for get%5C_it.
Pub is the package manager for the Dart programming language, containing reusable libraries & packages for Flutter, AngularDart, and general Dart programs.
New post on /r/flutterdev subreddit:
Flutter For Web, Desktop Released | Getting Started
https://www.youtube.com/watch?v=l4myDi8hiQs&feature=share
December 22, 2019 at 06:00PM by imthepk
https://ift.tt/2rnl1fS
Flutter For Web, Desktop Released | Getting Started
https://www.youtube.com/watch?v=l4myDi8hiQs&feature=share
December 22, 2019 at 06:00PM by imthepk
https://ift.tt/2rnl1fS
YouTube
Flutter For Web, Desktop Released | Getting Started Cocktail App
In this video, I will explain how to get started with Flutter for Web (Beta) and Flutter For Desktop (Alpha)#Web #Flutter #DesktopPlease give stars for this ...
New post on /r/flutterdev subreddit:
Shifting career to CS
Hello wonderful people, I got here asking for an advice from people who work in the industry rn, so as a beginner I only know java now and I just started android/java tutorial by google on Udacity a couple weeks ago and I don't wanna waste time on just android learning Java and then learning Kotlin as it's google's main language now which is a long process, and i wanna do mobile Dev, i asked some people who work in the field and in the market right now and they highly recommend Dart/flutter as they told me it's the future for mobile dev and soon web and desktop, so as a beginner just started in the field and only know java and basic android dev with java, should i just go with Flutter right away right now and master it and don't waste my time with Java android then Kotlin, or keep doing what I am doing with android/java to get some experience and after i do some apps with java move to Dart/flutter?if you're wondering what my goal is, so my goal is landing a job as soon as possible and do some freelance, so time is a main factor for me cause i quit my job to shift my career
December 22, 2019 at 06:02PM by hamohuh
https://ift.tt/2ZgCCCG
Shifting career to CS
Hello wonderful people, I got here asking for an advice from people who work in the industry rn, so as a beginner I only know java now and I just started android/java tutorial by google on Udacity a couple weeks ago and I don't wanna waste time on just android learning Java and then learning Kotlin as it's google's main language now which is a long process, and i wanna do mobile Dev, i asked some people who work in the field and in the market right now and they highly recommend Dart/flutter as they told me it's the future for mobile dev and soon web and desktop, so as a beginner just started in the field and only know java and basic android dev with java, should i just go with Flutter right away right now and master it and don't waste my time with Java android then Kotlin, or keep doing what I am doing with android/java to get some experience and after i do some apps with java move to Dart/flutter?if you're wondering what my goal is, so my goal is landing a job as soon as possible and do some freelance, so time is a main factor for me cause i quit my job to shift my career
December 22, 2019 at 06:02PM by hamohuh
https://ift.tt/2ZgCCCG
reddit
Shifting career to CS
Hello wonderful people, I got here asking for an advice from people who work in the industry rn, so as a beginner I only know java now and I just...
New post on /r/flutterdev subreddit:
Flutter: Animate the Container
https://youtu.be/-PzD4Ey_WgA
December 22, 2019 at 07:57PM by codeify2019
https://ift.tt/2SkqvCX
Flutter: Animate the Container
https://youtu.be/-PzD4Ey_WgA
December 22, 2019 at 07:57PM by codeify2019
https://ift.tt/2SkqvCX
New post on /r/flutterdev subreddit:
Flutter Web for production
Hi guys. Is there an expected date for Flutter Web to be production ready? I'm starting a project now that should be deployed by June 2020 ish. Should I invest in Flutter? Or won't it be production ready by then? For now the only major problem I see are the load times... I don't care about SEO and I don't need distinct URLs for different pages either, Flutter would fit like a glove.Thanks in advance!
December 22, 2019 at 08:26PM by Zizico2
https://ift.tt/2PMFDay
Flutter Web for production
Hi guys. Is there an expected date for Flutter Web to be production ready? I'm starting a project now that should be deployed by June 2020 ish. Should I invest in Flutter? Or won't it be production ready by then? For now the only major problem I see are the load times... I don't care about SEO and I don't need distinct URLs for different pages either, Flutter would fit like a glove.Thanks in advance!
December 22, 2019 at 08:26PM by Zizico2
https://ift.tt/2PMFDay
reddit
Flutter Web for production
A subreddit for Google's crossplatform UI toolkit.
New post on /r/flutterdev subreddit:
I've created Data Class generator
The dataclass_generator generates base class with methods:operator==hashCodetoStringcopyWithhttps://github.com/jarekb123/dart_dataclassLet me know what your thoughts about the package.
December 23, 2019 at 12:04AM by jarekb123
https://ift.tt/2EQdf0V
I've created Data Class generator
The dataclass_generator generates base class with methods:operator==hashCodetoStringcopyWithhttps://github.com/jarekb123/dart_dataclassLet me know what your thoughts about the package.
December 23, 2019 at 12:04AM by jarekb123
https://ift.tt/2EQdf0V
GitHub
jarekb123/dart_dataclass
Dart data class (equals, hashCode, toString, copyWith) methods generator - jarekb123/dart_dataclass
New post on /r/flutterdev subreddit:
cli tool to update dart imports.
As a user of visual code, refactoring source files (moving/renaming) is a pain as visual code doesn't update import statements.To solve this problem, until vscode provides a fix, I've built a cli tool that is able to move/rename dart libraries and will update any import statements so they point to the new path.You need to install the package globally so run:pub global activate drtimportYou can then move a single dart library or an entire folder by running:drtimport move lib/myfile.dart lib/src/myfile.dartordrtimport move lib/scripts lib/src/scriptsIf you have already moved the file and your imports are screwed you can run the patch commanddrtimport patch scripts src/scriptsThis will find all import and export statements which contain the string 'scripts' and change it to 'scr/scripts'.Check the readme for details on using the app.I strongly recommend committing your code into git before running drtimport.We use it on a mid size project and it works nicely.https://pub.dev/packages/drtimportI hope you find it useful.
December 23, 2019 at 02:49AM by bsutto
https://ift.tt/36T4KOS
cli tool to update dart imports.
As a user of visual code, refactoring source files (moving/renaming) is a pain as visual code doesn't update import statements.To solve this problem, until vscode provides a fix, I've built a cli tool that is able to move/rename dart libraries and will update any import statements so they point to the new path.You need to install the package globally so run:pub global activate drtimportYou can then move a single dart library or an entire folder by running:drtimport move lib/myfile.dart lib/src/myfile.dartordrtimport move lib/scripts lib/src/scriptsIf you have already moved the file and your imports are screwed you can run the patch commanddrtimport patch scripts src/scriptsThis will find all import and export statements which contain the string 'scripts' and change it to 'scr/scripts'.Check the readme for details on using the app.I strongly recommend committing your code into git before running drtimport.We use it on a mid size project and it works nicely.https://pub.dev/packages/drtimportI hope you find it useful.
December 23, 2019 at 02:49AM by bsutto
https://ift.tt/36T4KOS
Dart packages
drtimport | Dart Package
An cli app to help you refactor you dart libraries because VSCode won't.
New post on /r/flutterdev subreddit:
Flutter Pro Tip: Prefer Discrete GPU For Smoother Testing FPS
If you are on MacOS running the iOS simulator for testing, and your Mac has a discrete GPU, you can choose to prefer that GPU. It will significantly increase frames per second. My 2018 MBP with Vega 16 discrete graphics was defaulting to the integrated Intel graphics. The frame rate was choppy and slow even on a basic app with just the default material transitions. Switching to discrete feels more like how it does on a real device (even an iPhone SE is smoother than the integrated GPU). A much nicer experience.With Simulator Open: File -> GPU Selection -> Prefer Discrete GPU
December 23, 2019 at 06:42AM by boon4376
https://ift.tt/35QZnzp
Flutter Pro Tip: Prefer Discrete GPU For Smoother Testing FPS
If you are on MacOS running the iOS simulator for testing, and your Mac has a discrete GPU, you can choose to prefer that GPU. It will significantly increase frames per second. My 2018 MBP with Vega 16 discrete graphics was defaulting to the integrated Intel graphics. The frame rate was choppy and slow even on a basic app with just the default material transitions. Switching to discrete feels more like how it does on a real device (even an iPhone SE is smoother than the integrated GPU). A much nicer experience.With Simulator Open: File -> GPU Selection -> Prefer Discrete GPU
December 23, 2019 at 06:42AM by boon4376
https://ift.tt/35QZnzp
reddit
Flutter Pro Tip: Prefer Discrete GPU For Smoother Testing FPS
If you are on MacOS running the iOS simulator for testing, and your Mac has a discrete GPU, you can choose to prefer that GPU. It will...
New post on Flutter Dev Google group:
Can't build anything after updating Android Studio & Flutter
Hi, I'm new to developing Apps, but had everything running until I allowed Android Studio to update to the latest version yesterday (v3.5.3). Everything now looks to be updated, but nothing will build, even if I create a new Flutter project it fails. A new project fails on build with the
December 23, 2019 at 10:19AM by Ross Cooper-Smith
https://ift.tt/396tRQf
Can't build anything after updating Android Studio & Flutter
Hi, I'm new to developing Apps, but had everything running until I allowed Android Studio to update to the latest version yesterday (v3.5.3). Everything now looks to be updated, but nothing will build, even if I create a new Flutter project it fails. A new project fails on build with the
December 23, 2019 at 10:19AM by Ross Cooper-Smith
https://ift.tt/396tRQf
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 1.12 - Biggest Flutter release of the year 2019
https://ift.tt/2sdeEMw
December 23, 2019 at 12:05PM by Pablo_Emileo_Escobar
https://ift.tt/2ZfsmdM
Flutter 1.12 - Biggest Flutter release of the year 2019
https://ift.tt/2sdeEMw
December 23, 2019 at 12:05PM by Pablo_Emileo_Escobar
https://ift.tt/2ZfsmdM
Thinkwik Blogs
Flutter 1.12 - Biggest Flutter release of the year 2019
Here is everything you should know about Flutter 1.12 release, read more about new features and updates, and its impact on developers.
New post on /r/flutterdev subreddit:
Very few supported devices of my Flutter app on PlayConsole
Its been a very fun adventure with Flutter so far and my app just got published in PlayStore but I have 2 problemsIts not visible on most devicesThe supported devices is VERY FEW (25 only)How do I increase the supported versions of Androids? Like from Jellybean to latest?My code for app-level build.gradle is below:
December 23, 2019 at 12:21PM by cosmoph
https://ift.tt/2ShWJPh
Very few supported devices of my Flutter app on PlayConsole
Its been a very fun adventure with Flutter so far and my app just got published in PlayStore but I have 2 problemsIts not visible on most devicesThe supported devices is VERY FEW (25 only)How do I increase the supported versions of Androids? Like from Jellybean to latest?My code for app-level build.gradle is below:
android { compileSdkVersion 28 sourceSets { main.java.srcDirs += 'src/main/kotlin' } lintOptions { disable 'InvalidPackage' } defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "com.hivemanila.syncshop_webview" minSdkVersion 16 targetSdkVersion 28 versionCode flutterVersionCode.toInteger() versionName flutterVersionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" multiDexEnabled true } signingConfigs { release { keyAlias keystoreProperties['keyAlias'] keyPassword keystoreProperties['keyPassword'] storeFile file(keystoreProperties['storeFile']) storePassword keystoreProperties['storePassword'] } } buildTypes { release { signingConfig signingConfigs.release minifyEnabled true useProguard true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } flutter { source '../..' } dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test:runner:1.1.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0' }
December 23, 2019 at 12:21PM by cosmoph
https://ift.tt/2ShWJPh
reddit
Very few supported devices of my Flutter app on PlayConsole
Its been a very fun adventure with Flutter so far and my app just got published in PlayStore but I have 2 problems 1. Its not visible on most...
New post on /r/flutterdev subreddit:
Flutter Tap Newsletter - Week 18 - Flutter Interact special edition. Articles, tutorials, videos and much more
https://ift.tt/2PP5UFh
December 23, 2019 at 01:11PM by vensign
https://ift.tt/2Qaw2te
Flutter Tap Newsletter - Week 18 - Flutter Interact special edition. Articles, tutorials, videos and much more
https://ift.tt/2PP5UFh
December 23, 2019 at 01:11PM by vensign
https://ift.tt/2Qaw2te
Fluttertap
Newsletter Issue 18
Flutter Tap newsletter with the latest of Flutter. Articles, tutorials, videos and much more - Issue 18
New post on /r/flutterdev subreddit:
Created a bottom nav bar
Just created a navbar.If anyone found a bug, please, submit a pr.https://pub.dev/packages/circle_bottom_navigationThanks :D
December 23, 2019 at 12:49PM by jeanluucas
https://ift.tt/2ZgoWHT
Created a bottom nav bar
Just created a navbar.If anyone found a bug, please, submit a pr.https://pub.dev/packages/circle_bottom_navigationThanks :D
December 23, 2019 at 12:49PM by jeanluucas
https://ift.tt/2ZgoWHT
Dart packages
circle_bottom_navigation | Flutter package
An animated, beauty and functional Bottom Navigation Bar you app.
New post on /r/flutterdev subreddit:
Flutter Intl - VS Code extension that binds ARB localization files to Dart code
https://ift.tt/35RgO32
December 23, 2019 at 03:35PM by goranlu
https://ift.tt/2EOaXzs
Flutter Intl - VS Code extension that binds ARB localization files to Dart code
https://ift.tt/35RgO32
December 23, 2019 at 03:35PM by goranlu
https://ift.tt/2EOaXzs
Visualstudio
Flutter Intl - Visual Studio Marketplace
Extension for Visual Studio Code - Flutter localization binding from .arb files with official Intl library
New post on /r/flutterdev subreddit:
Created a bottom nav bar
https://ift.tt/2LAJqGc
December 23, 2019 at 06:00PM by jeanluucas
https://ift.tt/2tLk95y
Created a bottom nav bar
https://ift.tt/2LAJqGc
December 23, 2019 at 06:00PM by jeanluucas
https://ift.tt/2tLk95y
Dart packages
circle_bottom_navigation | Flutter Package
An animated, beauty and functional Bottom Navigation Bar for Flutter.
New tweet from FlutterDev:
Are you looking to add support for a Flutter plugin? 🔌
👏 Web support was added to the url_launcher plugin!
Learn more here ↓ https://t.co/8ND4nBiI3k— Flutter (@FlutterDev) December 23, 2019
December 23, 2019 at 07:00PM
http://twitter.com/FlutterDev/status/1209171814297088000
Are you looking to add support for a Flutter plugin? 🔌
👏 Web support was added to the url_launcher plugin!
Learn more here ↓ https://t.co/8ND4nBiI3k— Flutter (@FlutterDev) December 23, 2019
December 23, 2019 at 07:00PM
http://twitter.com/FlutterDev/status/1209171814297088000
Medium
How to Write a Flutter Web Plugin
Introduction
New post on /r/flutterdev subreddit:
Learnt how to make simple apps , now what ?
Following the advice of many people i completed the Angela Yu udemy course and it has enabled me to make a few simple apps of my own which fetch from a REST Api . But i can already feel my lack of knowledge about advanced concepts like proper state management and architecture is hurting my ability to make larger apps.Is provider enough or is RxDart + BLoC required ? Any resources/udemy courses that are geared towards someone who is an intermediate (?) level flutter dev
December 23, 2019 at 07:02PM by kkultimate
https://ift.tt/2ESLQeN
Learnt how to make simple apps , now what ?
Following the advice of many people i completed the Angela Yu udemy course and it has enabled me to make a few simple apps of my own which fetch from a REST Api . But i can already feel my lack of knowledge about advanced concepts like proper state management and architecture is hurting my ability to make larger apps.Is provider enough or is RxDart + BLoC required ? Any resources/udemy courses that are geared towards someone who is an intermediate (?) level flutter dev
December 23, 2019 at 07:02PM by kkultimate
https://ift.tt/2ESLQeN
reddit
Learnt how to make simple apps , now what ?
Following the advice of many people i completed the Angela Yu udemy course and it has enabled me to make a few simple apps of my own which fetch...
New post on /r/flutterdev subreddit:
Flutter Windows Desktop App | Early Preview
https://youtu.be/1bkcq3lO900
December 23, 2019 at 06:37PM by imthepk
https://ift.tt/35Rqw5l
Flutter Windows Desktop App | Early Preview
https://youtu.be/1bkcq3lO900
December 23, 2019 at 06:37PM by imthepk
https://ift.tt/35Rqw5l
YouTube
Flutter Windows Desktop App | Early Preview
In this video, I will explain how to get started with Flutter for Windows Desktop (Alpha)
#Windows#Flutter #Desktop
Please give stars for this project on git and like the video.
Source Code & Exe - https://drive.google.com/file/d/1e7ROD7Cj3Cwh_Sis2SDO…
#Windows#Flutter #Desktop
Please give stars for this project on git and like the video.
Source Code & Exe - https://drive.google.com/file/d/1e7ROD7Cj3Cwh_Sis2SDO…