skip to Main Content

Flutter text overflow property does not work when there is a row within a row

@override Widget build(BuildContext context) { return Container( child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Row( children: [ CircleAvatar(), Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text(title, overflow: TextOverflow.ellipsis), Text(part), ], ), ], ), ElevatedButton(onPressed: () {}, child: Text('btn')), ], ), ); } The…

VIEW QUESTION

Flutter BLoC structure

I have a nested data structure like this: User |-List<WorkoutPlan> |-List<Workout> |-List<Exercise> Each list is saved on a different json file: -user.json with the list workout plans’ ids -workoutPlans.json: Each workout plan has a list of workouts’ id -workouts.json For…

VIEW QUESTION
Back To Top
Search