Skip to content

Instantly share code, notes, and snippets.

View TahaTesser's full-sized avatar
💙
Flutter Contributor

Taha Tesser TahaTesser

💙
Flutter Contributor
View GitHub Profile
@TahaTesser
TahaTesser / main.dart
Created February 17, 2024 10:53
Material 3 Durations demo
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}