aman-kassa-flutter/local_packages/flutter_lock_screen/example/lib/empty.dart

16 lines
306 B
Dart

import 'package:flutter/material.dart';
class EmptyPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: AppBar(
title: Text('Secure Area'),
),
body: Center(
child: Text("Secure Screen"),
),
);
}
}