You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i would like to use this for flutter web, but it will be appear at the bottom of the screen and covers the whole space. i tried to wrap it in center or other widgets but it is impossible.
thank you.
The text was updated successfully, but these errors were encountered:
I found one sollution for it and changed the code in this way, i think it has a better apperance in web:
in 'sheets.dart' file :
1- change 'width: double.infinity' for first Container to -> width: 500
2- change 'mainAxisAlignment: MainAxisAlignment.end' for Row in the second Container to -> mainAxisAlignment: MainAxisAlignment.center.
3- try to find description: Text('your text') in (_sweetSheet.show(... ) ) and add -> textAlign: TextAlign.center.
4- if you want you can add 'height' to your Text.
i would like to use this for flutter web, but it will be appear at the bottom of the screen and covers the whole space. i tried to wrap it in center or other widgets but it is impossible.
thank you.
The text was updated successfully, but these errors were encountered: