Skip to content

Instantly share code, notes, and snippets.

@gojsOffice
gojsOffice / main.dart
Last active January 23, 2024 16:08
yawning-pomelo-4044
import 'dart:async';
import 'package:flutter/material.dart';
const double kGaugeWidth = 30.0;
const int kGaugeUpdateIntervalMilliseconds = 5;
const double kGaugeIncrement = 100.0;
const double kMaxGaugeHeight = 0.5;
const double kGaugeHeightThreshold = 5.0;
const double kScoreFontSize = 30.0;
@gojsOffice
gojsOffice / main.dart
Created January 22, 2024 17:26
celestial-osmium-4474
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@gojsOffice
gojsOffice / main.dart
Created January 22, 2024 17:25
celestial-osmium-4474
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@gojsOffice
gojsOffice / main.dart
Created January 22, 2024 17:23
celestial-osmium-4474
import 'package:flutter/material.dart';
void main() {
runApp(const App());
}
class App extends StatefulWidget {
const App({super.key});
@override
@gojsOffice
gojsOffice / readme.md
Last active January 22, 2024 17:23
enchanted-lotus-9856

enchanted-lotus-9856

Created with <3 with dartpad.dev.

@gojsOffice
gojsOffice / main.dart
Created January 22, 2024 16:41
celestial-osmium-4474
import 'package:flutter/material.dart';
void main() {
runApp(const App());
}
class App extends StatefulWidget {
const App({super.key});
@override