-
-
Notifications
You must be signed in to change notification settings - Fork 860
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
You can't put a row in a MapPlugin #108
Comments
lsaudon
changed the title
🐛 You can't put a row in a MapPlugin
Bug: You can't put a row in a MapPlugin
Sep 17, 2018
Solution: I wrap a container in Flexible Widget return Row(
children: <Widget>[
Flexible(
child: Container(
decoration: BoxDecoration(
color: Color.fromRGBO(255, 255, 255, 0.9),
borderRadius: BorderRadius.circular(25.0),
),
margin: EdgeInsets.all(15.0),
padding: EdgeInsets.symmetric(horizontal: 20.0),
child: options.textField,
),
),
Container(
decoration: BoxDecoration(
color: Color.fromRGBO(255, 255, 255, 0.9),
borderRadius: BorderRadius.circular(25.0),
),
margin: EdgeInsets.all(15.0),
child: options.iconButton,
),
],
); |
Can OP edit his original post to remove the links, it is linking all the github issues into this one. |
lsaudon
changed the title
Bug: You can't put a row in a MapPlugin
You can't put a row in a MapPlugin
Jan 31, 2019
5 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to have a row that contains a textfield and a iconButton like the one below.
I have the following errors.
flutter: ══╡ EXCEPTION CAUGHT BY RENDERING LIBRARY ╞═════════════════════════════════════════════════════════
flutter: The following assertion was thrown during performLayout():
flutter: BoxConstraints forces an infinite width.
I don't know if it's a bug or a parameter that's missing on my side.
The text was updated successfully, but these errors were encountered: