Delete login page and add function for http requet

This commit is contained in:
paoloGuagnano
2024-03-20 18:41:28 +01:00
parent ef9fba11c8
commit 4a6fbaf313
5 changed files with 19 additions and 12 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1011 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -13,20 +13,28 @@ class HomePage extends StatelessWidget {
body: SingleChildScrollView(
child: Column(
children: [
Image(
image: AssetImage('assets/Logo/LogoHome.png'),
),
Row(children: [
Text('TO', style: TextStyle(fontSize: 30, color: Colors.grey[800])),
Text('--->', style: TextStyle(fontSize: 30, color: Colors.grey[800])),
Text('DO', style: TextStyle(fontSize: 30, color: Colors.grey[800])),
const SizedBox(height: 50),
Image.asset('assets/Logo/logoMottola.png', width: 250, height: 250),
const SizedBox(height: 20),
//const Image(
// image: AssetImage('assets/Logo/logoMottola.png',),
//),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset('assets/icons/italy.png', width: 50, height: 50),
const SizedBox(width: 20),
Image.asset('assets/icons/next.png', width: 30, height:30),
const SizedBox(width: 10),
//Text(' --> ', style: TextStyle(fontSize: 30, color: Colors.grey[800])),
Image.asset('assets/icons/flagMottola.png', width: 64, height: 64),
]),
const SizedBox(height: 20),
TextField(
keyboardType: TextInputType.multiline,
maxLines: null,
style: TextStyle(fontSize: 20, color: Colors.grey[800]),
decoration: InputDecoration(
decoration: const InputDecoration(
hintText: 'Parola Italiana',
hintStyle: TextStyle(fontSize: 20)
),
@@ -36,17 +44,16 @@ class HomePage extends StatelessWidget {
onPressed: () {
},
child: const Text('Traduci'),
child: Text('Traduci'),
style: ElevatedButton.styleFrom(
backgroundColor: Colors.orange,
padding: EdgeInsets.symmetric(horizontal: 50, vertical: 20),
textStyle: TextStyle(
padding: const EdgeInsets.symmetric(horizontal: 50, vertical: 20),
textStyle: const TextStyle(
fontSize: 15,
fontWeight: FontWeight.bold)),
),
const SizedBox(height: 30),
WordsScreen(),
//Text('ToDo', style: TextStyle(fontSize: 30, color: Colors.grey[800]))
],
),
),