fix: remove invalid expanded widget (#5124)

This commit is contained in:
ggurdin 2026-01-08 10:01:03 -05:00 committed by GitHub
parent df2aca6f96
commit 13efe9463e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -59,11 +59,9 @@ class VocabPracticeView extends StatelessWidget {
withScrolling: false,
padding: const EdgeInsets.all(0.0),
showBorder: false,
child: Expanded(
child: controller.isComplete
? CompletedActivitySessionView(controller)
: _OngoingActivitySessionView(controller),
),
child: controller.isComplete
? CompletedActivitySessionView(controller)
: _OngoingActivitySessionView(controller),
),
);
}