Adding a Drawer to your Flutter App

A drawer can be add to a scafold My drawer screen class class DrawerScreen extends StatelessWidget { const DrawerScreen({Key? key}) : super(key: key);

@override Widget build(BuildContext context) { return Drawer( child: ListView( ... https://ohiscode.hashnode.dev/adding-a-drawer-to-your-flutter-app

Using Parse Server (Back4App) as an alternative to Firebase for your Flutter App

Firebase is a great backend resource for developers who are looking to setup mobile apps quickly without having to figure or worry much about the backend stuff. It is very easy to setup there and have your app running in minutes in the nosql system p... https://jacksiro.hashnode.dev/using-parse-server-back4app-as-an-alternative-to-firebase-for-your-flutter-app

How to use supabase database in flutter || 🔴 Part - 1

Welcome friends to this blog post where you will learn how to use the supabase database in a flutter app. For people who understand Hindi: https://youtu.be/1QzT_y-BioU Step1: Go to supabase. com and click on start project and then this 👇page will ap... https://nextdev1111.hashnode.dev/how-to-use-supabase-database-in-flutter-or-part-1

The `Final` Keyword in Dart

The final keyword in Dart is used when we don't know the value at compile time, however, we know that the value will be available at runtime. The final variables once initialized cannot be mutated as in reassigned. However, the values/objects held by... https://amitach.xyz/the-final-keyword-in-dart

Bringing CSS "float" to Flutter text rendering

When displaying text in your Flutter app, you may notice that Flutter's text rendering capabilities are lacking some features commonly used in web pages, such as CSS float, which is used to place an image or other element on the left or right side of... https://blog.ronbooth.com/bringing-css-float-to-flutter-text-rendering

Implement App/Universal Link on Flutter

Part 1: Initialise Web Hosting and Flutter Project Part 2: Implement Android App Links Since IOS universal link implementation involves the team id setting and upload entitlements file to developer console, the following part requires Apple Developer... https://maylau.hashnode.dev/implement-appuniversal-link-on-flutter-part-3

What is the const  keyword in Dart?

How to use const? To understand the const keyword lets look at the following code first to see how its declared void main(){ const x = [1,2,3]; print(x); } //dart run file.dart => [1,2,3]

Now, if we modify the code above to modify const variabl... https://amitach.xyz/what-is-the-const-keyword-in-dart

Implement App/Universal Link on Flutter

Part 1: Initialise Web Hosting and Flutter Project Manifest Intent Filter Open main folders’ AndroidManifest.xml. Enable the flutter deep link and Add an intent filter inside the .MainActivity activity tag. <meta-data android:name="flutter_... https://maylau.hashnode.dev/implement-appuniversal-link-on-flutter-part-2

Implement App/Universal Link on Flutter

Deep Link vs App/Universal Link Deep link is a link to open an app instead of a web page in browser. Since an app is specifically for a certain platform, to brings up a better user experience, it is common for certain web content to brings up install... https://maylau.hashnode.dev/implement-appuniversal-link-on-flutter-part-1

Flutter Performance Optimization Techniques

Quick Summary: Flutter Performance Optimization is critical for every application, influenced by several factors. In most cases, the Flutter application's performance is sufficient, and you won't need to optimize it unless you run into a problem. H... https://Ronak.hashnode.dev/flutter-performance-optimization-techniques-cl5cfeez701dyasnv2nw8ex1a


Ricerca