Skip to content

Instantly share code, notes, and snippets.

@wolkenschieber
wolkenschieber / main.dart
Created July 29, 2022 19:51
Flutter puzzle (I)
import 'dart:math';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);