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