Posts by Miguel Ruivo • 188 points
2 posts
-
3
votes1
answer73
viewsA: How do for the child widget of a Column expands to the maximum width of the parent(Column)?
Use the Expanded in the son of Column should be enough, however, you can always try to add as a property of the column: crossAxisAlignment: CrossAxisAlignment.stretch to make all the children of…
-
4
votes1
answer251
viewsQ: Generic and Comparable in Java
I have a question I can’t get answered, if anyone can give me a plausible explanation I’d be grateful. Assuming I have two classes: public class Figura implements Comparable<Figura> { private…