import 'package:flutter/material.dart'; class AboutScreen extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text("About App")), body: Center( child: Text("UDP VPN - Secure & Fast"), ), ); } }