mirror of
https://github.com/ALEZ-DEV/Babylonia-terminal.git
synced 2025-12-18 02:18:51 +00:00
35 lines
812 B
Dart
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"),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|