Vpnapkwoow / about_screen.dart
Aymankhal56's picture
Upload 6 files
39499f1 verified
raw
history blame contribute delete
294 Bytes
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"),
),
);
}
}