Initial commit

Add Space version 2.0.1
This commit is contained in:
friebetill
2022-03-28 14:56:00 +02:00
commit 80f218097d
1258 changed files with 59763 additions and 0 deletions

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