Files
TubeCards/lib/modules/landing/landing_page.dart
2022-10-16 12:35:41 +02:00

18 lines
545 B
Dart

import 'package:flutter/material.dart';
import 'component/landing/landing_component.dart';
/// The page where the user lands when they open the app for the first time.
///
/// On the screen the user can log in, create an account or use TubeCards
/// without an account.
class LandingPage extends StatelessWidget {
const LandingPage({Key? key}) : super(key: key);
/// The name of the route to the [LandingPage].
static const String routeName = '/landing';
@override
Widget build(BuildContext context) => const LandingComponent();
}