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

14 lines
409 B
Dart

import 'package:flutter/material.dart';
import 'component/select_deck/select_deck_component.dart';
class SelectDeckPage extends StatelessWidget {
const SelectDeckPage({Key? key}) : super(key: key);
/// The name of the route to the [SelectDeckPage] screen.
static const String routeName = '/marketplace/select-deck';
@override
Widget build(BuildContext context) => const SelectDeckComponent();
}