First flutter web.

Related tags

Templates webtest
Overview

webtest

First flutter web.

freezed

1 - create a file

example my_class.dart

2 - create the class

```
import 'package:freezed_annotation/freezed_annotation.dart';

part 'my_class.freezed.dart'; // Important!!
part 'my_class.g.dart'; // Important!!

@freezed
class MyClass with _$MyClass {
  MyClass._();

  factory MyClass({
    String? id,
    String? name,
  }) = _MyClass;

  factory MyClass.fromJson(Map<String, dynamic> json) => _$MyClassFromJson(json);
}
```

3 - command

Run the following command and make sure the .freezed.dart and .g.dart files are created.

$ flutter packages pub run build_runner build --delete-conflicting-outputs

You might also like...

My first bmi calculator using flutter and basic functionalities.

My first bmi calculator using flutter  and basic functionalities.

bmi_calculator A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started i

Jan 24, 2022

My-First-Flutter-App - Startup Name Generator App with favorites option

My-First-Flutter-App - Startup Name Generator App with favorites option

Startup Name Generator App with 'favorites' option.. This is my first Flutter ap

Jan 21, 2022

Flutter After Layout - Brings functionality to execute code after the first layout of a widget has been performed

Flutter After Layout - Brings functionality to execute code after the first layout of a widget has been performed, i.e. after the first frame has been displayed. Maintainer: @slightfoot

Jan 3, 2023

First Open Source Flutter based Beautiful Material Design Text fields.

First Open Source Flutter based Beautiful Material Design Text fields.

Pretty text field First Open Source Flutter based Beautiful Material Design Text fields.(More designed text fields coming soon.) Features [*] Compatib

Aug 29, 2022

My first flutter app I build sometime ago..

initial_project A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started

Sep 14, 2022

My first project with Dart/Flutter.

My first project with Dart/Flutter.

Service Orders | Application Um simples aplicativo de ordens de serviço baseado na rotina de serviços de uma empresa que trabalhei. About the Applicat

Oct 25, 2022

Return a Stream that emits null and done event when didChangeDependencies is called for the first time.

Return a Stream that emits null and done event when didChangeDependencies is called for the first time.

did_change_dependencies Author: Petrus Nguyễn Thái Học Return a Stream that emits null and done event when State.didChangeDependencies is called for t

Nov 9, 2022

Material color picker, you can customize colors. Selection in two step, first main color and after shades.

Material color picker, you can customize colors. Selection in two step, first main color and after shades.

Flutter Material Color Picker Material Color picker is a Flutter widget, that can be customizable. By default, it's Material Colors, but you can defin

Nov 25, 2022

📱 An app for accessing data about the FIRST Tech Challenge

📱 An app for accessing data about the FIRST Tech Challenge

The Orange Alliance - Flutter App An app for accessing data about the FIRST Tech Challenge. This is the mobile version of The Orange Alliance using th

Oct 30, 2022
Owner
Agustin Sampietro
Mobile developer, golfer and whisky tester.
Agustin Sampietro
Sibyl App written with Dart/Flutter. (My first experience in writing a real android app in flutter).

sibyl_app A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if thi

ALi.w 3 Feb 17, 2022
Flutter tutorial - This is my first Flutter tutorial app. Thanks to The Net Ninja youtube channel for this wonderful tutorial

ninja_id A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if this

null 1 Jun 9, 2022
A Recipe App created by following the first section of the book, Flutter Apprentice 2nd Edition.

recipes A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if this

Kian Yang Lee 1 Dec 17, 2021
First Open Source Flutter based material design music player with audio plugin to play online music

Flutter Music App First Open Source Flutter based dribbblel Design Music Player. logo free design http://www.freeuid.com/category/free material icons

佩奇的弟弟乔治 380 Jan 4, 2023
First flutter app.

todo_app_flutter This is a todo app. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if

Amit Chaudhary 0 Dec 26, 2021
Profile page ui - First Flutter Project. Just basic UI and Interaction experimentation.

Profile Page UI My first Flutter UI Page. Just experimenting with App Dev. Features The main home screen looks initially like this, The Follow Button

Aryan Bakshi 0 Jan 1, 2022
ui app , coded with help of codepur tut -> 30 days of flutter - this is my first app

my_shop A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if this

Rajat 2 Apr 10, 2022
First Flutter Project using StateFull,Important Widgets,proberties,actions

first_project A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if

Ahmed Hossny 1 Jan 8, 2022
A Flutter plugin for fetching Firestore documents with read from cache first then server.

Firestore Cache A Flutter plugin for fetching Firestore documents with read from cache first then server. This plugin is mainly designed for applicati

null 22 Nov 24, 2022