Skip to content

Instantly share code, notes, and snippets.

@austinstoker
austinstoker / main.dart
Created June 12, 2024 16:05
Intrinsic Height of just the favorite child of a row
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
// What I 'm trying to do:
//Mostly just use the intrinsic height of the workspace as the height of the row, and the checklist should just scroll if it doesn't have enough height.
// 10 items in checklist, workspace set to height 200. The row height should be 200, and the checklist should be scrollable.
// 10 items in the checklist, workspace set to 100. Row height is 200, checklist is scrollable.