Tag: flutter
-
Announcing Flutter 3.24 and Dart 3.5
Today, we’re unveiling Flutter 3.24 and Dart 3.5 alongside the last stop in the I/O 2024 Connect series, happening in just a few hours in China — one of Flutter’s most prolific communities in the world, making this moment very special. View original article
-
How we built the new Super Dash demo in Flutter and Flame in just six weeks!
Super Dash is a new Flutter demo game built from the Endless Runner Flame Template that launched with the recent update of the Flutter Casual Games Toolkit. View original article
-
Announcing Flutter 1.22
We’re delighted to introduce our latest release of Flutter, with extensive support for iOS 14 and Android 11. Flutter 1.22 builds on the foundation set by previous releases by enabling developers to build fast, beautiful user experiences for multiple platforms from a single codebase. View original article
-
Updates on Flutter and Firebase
Flutter is more than just an engine, a set of widgets, and some tools; it also includes a large ecosystem of packages to add functionality to your apps beyond what comes out of the box. Some of the most popular packages are the set that supports Firebase (aka FlutterFire). View original article
-
Announcing Flutter 1.20
Our ongoing vision with Flutter is to provide a portable toolkit for building stunning experiences wherever you might want to paint pixels on the screen. With every release, we continue to push towards ensuring that Flutter is fast, beautiful, productive and open for every platform we support. View original article
-
flutter/samples
A Flutter sample app that shows a state management approach using the Provider package. This is the app discussed in the Simple app state management section of flutter.dev. Here the app sets up objects it needs to track state: a catalog and a shopping cart. View original article
-
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. Nubank has been a mobile-first Fintech from the beginning. View original article
-
Flutter : How to do user login with Firebase
Flutter is an open source mobile SDK developed by Google to build high quality applications for Android and iOS. It allows developers to not only build application with beautiful design, smooth animation and fast performance, but also able to integrate new features quickly. View original article
-
Here’s A Flutter Boilerplate(Starter Kit) with BLoC pattern, splash screen, sample pages, Google Admob ready
Building a Flutter app is simply amazing! Even more amazing is the fact that you can reuse your code in multiple projects! But there are times you simply need to kick-off a fresh project without having to copy from another project. View original article
-
An architectural review of the Invoice Ninja Flutter app
We’ve been working on our Flutter mobile app for a few months now, I thought it may helpful to share some of the techniques we’re using to help keep our code maintainable. Keep your code DRY (don’t repeat yourself). View original article
-
From Native to Flutter to Web
Hillel Coren explains he went from native mobile apps, to flutter apps and back to web app (using flutter). Useful tips here. Original article at https://hillel.dev/2020/02/27/flutter-web-things-to-know/ Source at https://github.com/invoiceninja/flutter-client
-
Top Flutter Tips and Tricks
-
Using Adaptive Cards in Flutter: Why we implemented a library with Microsoft
You may have read our last article on giving Flutter a serious try in our startup, which explains why we were so keen to use Flutter in the upcoming version of our product. This hasn’t changed: We’re still excited about Flutter and started rolling it out to some of our customers. View original article
-
Flutter: a Portable UI Framework for Mobile, Web, Embedded, and Desktop
Today marks an important milestone for the Flutter framework, as we expand our focus from mobile to incorporate a broader set of devices and form factors. View original article
-
Launching Flutter 1.2 at Mobile World Congress
The Flutter team is coming to you live this week from Mobile World Congress in Barcelona, the largest annual gathering of the mobile technology industry. One year ago, we announced the first beta of Flutter at this same event, and since then Flutter has grown faster than we could have imagined. View original article
-
Architect your Flutter project using BLOC pattern
Hi Folks! I am back with another brand new article on Flutter. This time I will be talking and demonstrating you “how to architect your Flutter projects”. So that you can maintain, scale and test your Flutter projects easily. Before diving into the actual topic. View original article
-
Managing Flutter Application State With InheritedWidgets
Everyone has heard that interactive applications can be decomposed into three parts: model, view, and controller. Anyone who has given Flutter a test drive will be familiar with its react-style support for building view/controllers with widgets and callbacks. View original article
-
Executing Dart in the Background with Flutter Plugins and Geofencing
Whether handling push notifications, location updates, or sensor events, many useful features require that an application has the ability to handle events without user interaction, even when not running in the foreground.