Skip to content

Instantly share code, notes, and snippets.

@AllianceDevolope
AllianceDevolope / demo.dart
Created March 26, 2026 17:18
High Performance Gauge
class GaugeExample extends StatelessWidget {
const GaugeExample({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: false,
backgroundColor: Colors.black,
body: SingleChildScrollView(
child: SafeArea(
@branflake2267
branflake2267 / main.dart
Created March 3, 2018 21:32
Flutter - Using the future builder with infinite list view.
import 'dart:async';
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(