Files
TubeCards/lib/modules/join_shared_deck/join_shared_deck_page.dart
friebetill 80f218097d Initial commit
Add Space version 2.0.1
2022-03-28 14:56:00 +02:00

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();
}