Skip to content

Instantly share code, notes, and snippets.

@FrazeColder
FrazeColder / main.dart
Created March 16, 2024 13:52
CustomScrollView with multiple silvers, expand first Widget to bottom with key set
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
home: TestPage(),
));
}
class TestPage extends StatefulWidget {
const TestPage({super.key});