Skip to content

Instantly share code, notes, and snippets.

@richardshiue
richardshiue / main.dart
Last active September 15, 2023 08:54
bustling-glacier-6043
import 'dart:ui';
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
static const String _title = 'Flutter Code Sample';