import 'package:flutter/material.dart'; import 'package:get/get.dart'; import '../controllers/splashscreen_controller.dart'; class SplashscreenView extends GetView { const SplashscreenView({super.key}); @override Widget build(BuildContext context) { return Scaffold( backgroundColor: Colors.white, body: SafeArea( child: Stack( children: [ Center( child: Column( mainAxisSize: MainAxisSize.min, children: [ Image.asset( 'assets/images/siparkir.png', width: 120, height: 120, ), const SizedBox(height: 24), const Text( "Sistem Parkir", style: TextStyle( fontSize: 24, fontWeight: FontWeight.bold, color: Colors.black, ), ), const SizedBox(height: 4), const Text( "plniconplus.co.id", style: TextStyle( fontSize: 14, color: Colors.black87, ), ), ], ), ), const Positioned( bottom: 12, left: 0, right: 0, child: Center( child: Text( "© 2025 Fajar Maulana", style: TextStyle( fontSize: 12, color: Colors.grey, ), ), ), ), ], ), ), ); } }