Skip to content

Instantly share code, notes, and snippets.

View craiglabenz's full-sized avatar

Craig Labenz craiglabenz

View GitHub Profile
@craiglabenz
craiglabenz / scrollable.dart
Created July 18, 2025 20:49
Single-page scrollable only if too tall, with a sticky footer
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(