62 lines
1.8 KiB
Dart
62 lines
1.8 KiB
Dart
// home_screen.dart
|
|
import 'package:flutter/material.dart';
|
|
|
|
class HomeScreen extends StatefulWidget {
|
|
const HomeScreen({super.key});
|
|
|
|
@override
|
|
State<HomeScreen> createState() => _HomeScreenState();
|
|
}
|
|
|
|
class _HomeScreenState extends State<HomeScreen> {
|
|
final TextEditingController _controller = TextEditingController();
|
|
|
|
void _handleInput(BuildContext context, String input) {
|
|
// Replace with your desired logic
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
SnackBar(content: Text('Checking profile of: $input')),
|
|
);
|
|
Navigator.pushReplacementNamed(context, '/profile/$input');
|
|
}
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(title: const Text("Home")),
|
|
body: Stack(
|
|
fit: StackFit.expand,
|
|
children: [
|
|
Image.asset(
|
|
'assets/images/cluster-photo-00.jpg',
|
|
fit: BoxFit.cover,
|
|
),
|
|
Center(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(16.0),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
TextField(
|
|
controller: _controller,
|
|
decoration: const InputDecoration(
|
|
hintText: 'Enter login',
|
|
border: OutlineInputBorder(),
|
|
filled: true,
|
|
fillColor: Colors.white,
|
|
),
|
|
),
|
|
const SizedBox(height: 10),
|
|
ElevatedButton(
|
|
onPressed: () {
|
|
_handleInput(context, _controller.text);
|
|
},
|
|
child: const Text('Submit'),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
} |