skip to Main Content

Flutter – Why doesn't a Text Widget go to next line?

I have this custom Widget class MyEventCard extends StatelessWidget { const MyEventCard({ super.key, required this.height, required this.width, required this.coloreChiaroSfondo, required this.coloreScuro, required this.data, required this.image, required this.sottotitolo, required this.titolo, }); final double height; final double width; final Color coloreChiaroSfondo; final…

VIEW QUESTION
Back To Top
Search