import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatefulWidget { const MyApp({super.key}); @override State createState() => _MyAppState(); } class _MyAppState extends State { @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), ), ); } }