37 lines
915 B
Dart
37 lines
915 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
void main() {
|
|
runApp(MyApp());
|
|
}
|
|
|
|
class MyApp extends StatefulWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
State<MyApp> createState() => _MyAppState();
|
|
}
|
|
|
|
class _MyAppState extends State<MyApp> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
home: Scaffold(
|
|
appBar: AppBar(
|
|
backgroundColor: const Color(0xFF37364A),
|
|
title: const Text("Qucik SSH"),
|
|
),
|
|
body: const Center(
|
|
child: Text('Hello, World!', style: TextStyle(color: Colors.white)),
|
|
),
|
|
floatingActionButton: FloatingActionButton(
|
|
onPressed: null,
|
|
backgroundColor: const Color(0xFF6264AE),
|
|
shape: const CircleBorder(),
|
|
child: const Icon(Icons.add, color: const Color(0xFF22202B)),
|
|
),
|
|
backgroundColor: const Color(0xFF22202B),
|
|
),
|
|
);
|
|
}
|
|
}
|