Kinda Code
Home/Flutter

Flutter

Flutter and Dart tutorials, tips & tricks
How to make Circular Buttons in Flutter

How to make Circular Buttons in Flutter

Updated: Mar 06, 2024
Buttons are an indispensable part of mobile applications. In Flutter, buttons are rectangular in shape by default. However, in some cases, you may want your buttons to be circular to accentuate and blend in with the surrounding layout......
How to disable Landscape mode in Flutter

How to disable Landscape mode in Flutter

Updated: Mar 06, 2024
This article shows you how to disable the landscape mode in Flutter. The Steps 1. Import the services library to your main.dart file: import 'package:flutter/services.dart'; Note that the services library comes along with......
Flutter system requirements on Windows and Mac (2024)

Flutter system requirements on Windows and Mac (2024)

Updated: Mar 06, 2024
Flutter is an open-source UI SDK (software development kit) created by Google. First launched in 2017 and rapidly growing, Flutter has more than 160k stars on Github so far and is used by many large corporations like Google, Alibaba, BMW,......
Working with ElevatedButton in Flutter

Working with ElevatedButton in Flutter

Updated: Mar 06, 2024
Most mobile and web applications have buttons that allow users to press to interact. In Flutter, you can use the ElevatedButton widget to create elevated buttons. ElevatedButton is the replacement for RaisedButton, which is now......
Working with TextButton in Flutter

Working with TextButton in Flutter

Updated: Mar 06, 2024
Buttons are an essential component of every Flutter mobile and web application. In this article, we are going to take a look at the TextButton widget. You will learn how to implement text buttons and how to disable them. We will also......
Working with OutlinedButton in Flutter

Working with OutlinedButton in Flutter

Updated: Mar 06, 2024
An OutlinedButton in Flutter is a labeled child displayed on a (zero elevation) Material widget that can react to touches by filling with a background color. OutlinedButton is the replacement for OutlineButton, which is now depreciated......
4 Ways to Format DateTime in Flutter

4 Ways to Format DateTime in Flutter

Updated: Mar 06, 2024
This article walks you through a couple of different ways to format DateTime in Flutter (and Dart). The first approach is to create a format function from scratch, and the later ones are using third-party packages. Using......
Flutter SliverList – Tutorial and Example

Flutter SliverList – Tutorial and Example

Updated: Mar 06, 2024
In this article (which was recently updated to keep up with the times), we will have a look at the SliverList widget and go over a complete example of using it in a Flutter application. What are Slivers in Flutter? According to......
Flutter and Firestore Database: CRUD example

Flutter and Firestore Database: CRUD example

Updated: Mar 06, 2024
This article covers the most important aspects you need to know when working with Flutter and Firebase Firestore. We will walk through the basics of Firestore, and later, we will build a complete application that lets a user create,......
Flutter: Configure Firebase for iOS and Android

Flutter: Configure Firebase for iOS and Android

Updated: Mar 06, 2024
This article shows you how to configure Firebase SDK for a Flutter project and fix some common errors you may run into when working with this stuff. We will use the most recent versions of Flutter and the firebase_core package. Using......
Most Popular Packages for State Management in Flutter (updated)

Most Popular Packages for State Management in Flutter (updated)

Updated: Mar 06, 2024
This article lists the most popular packages used for state management in Flutter applications that contain multiple screens. The top 2 criteria for us to include a package on this list are the number of stars it receives from GitHub......
How to create Blur Effects in Flutter

How to create Blur Effects in Flutter

Updated: Mar 06, 2024
This article shows you how to create blur effects in Flutter. We’ll go through 2 complete examples. The first example makes a blurred background image and the second one, a little bit more complex and longer, adds a frosted glass......
Page 1 of 33 Next →