chore: add skip button to add course page (#4407)

This commit is contained in:
ggurdin 2025-10-15 13:06:59 -04:00 committed by GitHub
parent df65441e5a
commit 2fc52e6a87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -130,6 +130,11 @@ class AddCoursePage extends StatelessWidget {
style: theme.textTheme.labelLarge,
),
),
if (route == "registration")
TextButton(
child: Text(L10n.of(context).skipForNow),
onPressed: () => context.go('/rooms'),
),
],
),
],