-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IOS widgets margin in bottom #1
Comments
@poovarasanvasudevan The reason you are getting the problem is I have hardcoded a height value if no height is supplied, which is based after android i.e Define your app bar above var appbar = CupertinoNavigationBar(
middle: Text("Message"),
); And in DashChat widget add this: DashChat(
height: MediaQuery.of(context).size.height -
(appbar.preferredSize.height +
MediaQuery.of(context).viewPadding.top),
); |
@poovarasanvasudevan I going to close this issue now if you have some other problem feel free to create a new issue. |
i am using this for ios cuppertino widgets
all working fine but there is little margin at the bottom
Code :
The text was updated successfully, but these errors were encountered: