Babylonia-terminal/babylonia_terminal_launcher/lib/screens/home_screen.dart
2024-05-12 00:08:27 +02:00

35 lines
812 B
Dart

import 'package:flutter/material.dart';
import './../widgets/background.dart';
class HomeScreen extends StatelessWidget {
const HomeScreen({super.key});
@override
Widget build(BuildContext context) {
return Stack(
children: [
const Background(),
SizedBox(
child: Align(
alignment: Alignment.bottomCenter,
child: Padding(
padding: const EdgeInsets.only(bottom: 50),
child: FilledButton(
onPressed: () {},
child: const SizedBox(
width: 300,
height: 25,
child: Center(
child: Text("Download"),
),
),
),
),
),
),
],
);
}
}