-
Notifications
You must be signed in to change notification settings - Fork 176
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
Bottom overflowed by 2.0 pixels #3
Comments
I've the same problem and people suggest multiple solution but that won't work in this situation, so I solve this by reducing the size of icons (gravity and distance) , and reducing the font size that we use their and that's it. |
in my case, I solved modify planetCardContent margin |
remove height is also effective |
`import 'package:flutter/material.dart';
import 'package:my_flutter_plannets/model/planets.dart';
class PlanetRow extends StatelessWidget {
final Planet planet;
PlanetRow(this.planet);
@OverRide
Widget build(BuildContext context) {
final planetThumbnail = new Container(
margin: new EdgeInsets.symmetric(
vertical: 16.0
),
alignment: FractionalOffset.centerLeft,
child: new Image(
image: new AssetImage(planet.image),
height: 92.0,
width: 92.0,
),
);
}
}
`
The text was updated successfully, but these errors were encountered: