mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-16 02:57:29 +08:00
15 lines
482 B
Dart
15 lines
482 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'component/join_shared_deck/join_shared_deck_component.dart';
|
|
|
|
/// The page on which the user can join a shared deck.
|
|
class JoinSharedDeckPage extends StatelessWidget {
|
|
const JoinSharedDeckPage({Key? key}) : super(key: key);
|
|
|
|
/// The name of the route to the [JoinSharedDeckPage] screen.
|
|
static const String routeName = '/shared-deck/add';
|
|
|
|
@override
|
|
Widget build(BuildContext context) => const JoinSharedDeckComponent();
|
|
}
|