marcglasberg / align_positioned

Flutter Package: When your desired layout or animation is too complex for Columns and Rows, this widget lets you position/size/rotate/transform its child in complex ways.
BSD 2-Clause "Simplified" License
75 stars 8 forks source link

Problem with SingleChildScrollView #1

Closed carmas123 closed 5 years ago

carmas123 commented 5 years ago

Hi and thank you for share you very good library with us... I've a problem when use it with SingleChildScrollView. I use SingleChildScrollView as child of AlignPositioned and the scrolling is not handled by SingleChildScrollView.

marcglasberg commented 5 years ago

Glad you like it. Regarding SingleChildScrollView not working, that's weird, and I'm not really sure what you mean. Can you share a minimum reproducible code (complete, with main etc)?

carmas123 commented 5 years ago

I solved passing a child with fixed height into SingleChildScrollView. Thank you. This is my solution:

SingleChildScrollView(
  child: Container(
    height: 450,
    child: AlignPositioned(
      ...
    )
  )
)
omidraha commented 4 years ago

Thanks @carmas123.