welcom page and home page init

This commit is contained in:
2023-09-27 09:13:34 +02:00
parent d598a41475
commit 9314d5f4e0
9 changed files with 146 additions and 107 deletions

View File

@@ -0,0 +1,31 @@
import 'package:flutter/material.dart';
class WelcomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Pagina di benvenuto',
home: Scaffold(
appBar: AppBar(
title: Text('Benvenuto'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text('Benvenuto nella pagina di benvenuto!'),
SizedBox(height: 20),
Text('Clicca sul pulsante per continuare'),
SizedBox(height: 20),
ElevatedButton(
onPressed: () {},
child: Text('Continua'),
),
],
),
),
),
);
}
}