enisn / UraniumUI

Uranium is a Free & Open-Source UI Kit for MAUI.
Apache License 2.0
1.19k stars 142 forks source link

material DataGrid BUG : Can not scroll with this Grid #764

Open GuyFlorent opened 2 months ago

GuyFlorent commented 2 months ago

I have just implement to my project, evrythin's ok with data but impossible to scroll vertically or horizontally

enisn commented 2 months ago

DataGrid doesn't include any scroll logic itself. You can put it inside a ScrollView

<ScrollView>
  <material:DataGrid>
    <!-- ... -->
  </material:DataGrid>
</ScrollView>
tookunozima commented 2 months ago

I should have set the Orientation property in the ScrollView. I've deleted that question.