This commit is contained in:
Nico
2024-11-20 15:23:49 +01:00
parent c9e9fe10da
commit c292476322
14 changed files with 3655 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ import 'package:fforte/methods/http_request.dart';
import 'package:file_picker/file_picker.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'addCam/add_cam_main.dart';
import 'screens/addCam/add_cam_main.dart';
// * The homepage where you can choose to add something or view the database entries
@@ -79,7 +79,15 @@ class HomePage extends StatelessWidget {
onPressed: () {
_sendFile();
},
child: Text(AppLocalizations.of(context)!.sendfile))
child: Text(AppLocalizations.of(context)!.sendfile)),
const SizedBox(height: 10,),
ElevatedButton(
style: ElevatedButton.styleFrom(
minimumSize: const Size(250, 40)
),
onPressed: () => Navigator.pushNamed(context, '/Excursion'),
child: const Text("Excusion")),
],
)),
],