boxy icon indicating copy to clipboard operation
boxy copied to clipboard

Overcome limitations of built-in layouts, advanced flex, custom multi-child layouts, slivers, and more!

Results 15 boxy issues
Sort by recently updated
recently updated
newest added

Hello, I was just wondering if is was possible to avoid a layout for some child ? I have one child that need to be resized based on a animation...

question

Im a boxy noob, but stumbled here in what looks promising ### My problem ### I have a listview of variable sized items. Inside these variable sized items are images...

question

I would like to be able to find Global Offset of a child of Widget nested down below in Widget. So let's say I have following Widget tree: W0 |--W01...

question

I'm trying to expose an extra property on BoxyChild so the parent delegate can use it in its layout. I tried to understand the overall structure of the Boxy classes...

question

Thanks for this package I would like to know if layout child reorder able supports based on user drag action ?

question

It would be cool if we could use a custom constraints and geometry in children, this would allow you to pass data calculated at layout time such as the child's...

enhancement

`layers.clipPath()` does not apply `paintOffset` to `path` correctly when used in `paint()`. It works as expected in `paintChildren()` ``` import 'package:boxy/boxy.dart'; import 'package:flutter/material.dart'; void main(List args) { runApp(MaterialApp( theme: ThemeData.from(colorScheme:...

Hey, issue pretty critical for screen reader's users. If I'm `inflate`'ing a widget in the delegate, the inflated widget is in the end of child handles list. For painting and...

Hey, I just started to read your documentation on Boxy and found out the `Size` you are returning in [BoxyId Example](https://boxy.wiki/custom-boxy/boxy-id/) has the next code ``` return Size( max(helloSize.width, worldSize.height),...