mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-26 01:54:23 +08:00
Initial commit
Add Space version 2.0.1
This commit is contained in:
13
lib/modules/import_csv/import_csv_page.dart
Normal file
13
lib/modules/import_csv/import_csv_page.dart
Normal file
@ -0,0 +1,13 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'component/import_csv/import_csv_component.dart';
|
||||
|
||||
class ImportCSVPage extends StatelessWidget {
|
||||
const ImportCSVPage({Key? key}) : super(key: key);
|
||||
|
||||
/// The name of the route to the [ImportCSVPage] screen.
|
||||
static const routeName = '/import/csv';
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => const ImportCSVComponent();
|
||||
}
|
Reference in New Issue
Block a user