muhammad369 / ResponsiveGrid_Flutter

Responsive Grid Layout for Flutter
MIT License
88 stars 27 forks source link

ResponsiveGridRow centers all childs #8

Closed akshaybhange closed 4 years ago

akshaybhange commented 4 years ago
ResponsiveGridRow(
          children: [
            ResponsiveGridCol(
              lg: 6,
              xs: 12,
              child: Column(
                children: [
                  ImportantInfoCard(),// height 100px
                  AllLogCard(), // height 100px
                ],
              ),
            ),
            ResponsiveGridCol(
              lg: 6,
              xs: 12,
              child: AllClientsCard(), // height 500px
            )
          ],
        )

Here my first column has 2 childrens and 2nd col has 1 children.. but col1 has height of 200 px & col2 has height 500px then ResponsiveGridRow centers both the childs.. PFA image of my view Screenshot from 2020-04-13 20-37-10

zkmark commented 4 years ago

I have the same problem, did you manage to solve it?

ftshop

akshaybhange commented 4 years ago

not yet @zkmark . I'm waiting for the repo owner's reply.. @mohamed-selim-a please give solution here.

zkmark commented 4 years ago

at the moment i use this similar package and it seems to work fine

https://github.com/rafaelsetragni/flutter_responsive

akshaybhange commented 4 years ago

@zkmark are you facing any issue with that repo ? is it compatible with flutter web?

zkmark commented 4 years ago

works fine

muhammad369 commented 4 years ago

I'm so sorry for not being responsive that long please use the latest version 1.2.0 you will find the problem solved