Skip to content

Instantly share code, notes, and snippets.

@jakobleck
jakobleck / scrollable_column.dart
Created April 6, 2023 19:40
A Flutter workaround for using spaced content in a scrollable Column
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override