Skip to content

Instantly share code, notes, and snippets.

View mgarciareimers's full-sized avatar
🏠
Working from "Home Sweet Home"

Miguel García Reimers mgarciareimers

🏠
Working from "Home Sweet Home"
View GitHub Profile
@andrzejchm
andrzejchm / expandable_page_view.dart
Last active February 8, 2024 10:53
ExpandablePageView is a PageView that will adapt its height to the currently displayed child. with animation!
import 'package:flutter/material.dart';
class ExpandablePageView extends StatefulWidget {
final List<Widget> children;
const ExpandablePageView({
Key key,
@required this.children,
}) : super(key: key);