Files
UUVPN/flutter/lib/routes/OnceNotice.dart
T
2023-06-25 11:50:55 +08:00

29 lines
683 B
Dart

// OnceNotice.dart
//ignore_for_file: file_names
import 'package:sail/pages/ProOnecePage.dart';
import '/pages/proPage.dart';
import 'package:flutter/material.dart';
class OnceNotice extends StatelessWidget {
const OnceNotice({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
automaticallyImplyLeading: false,
backgroundColor: Colors.transparent,
shadowColor: Colors.transparent,
actions: const [
Padding(
padding: EdgeInsets.all(8.0),
child: CloseButton(),
)
],
),
body: const ProOnecePage(),
);
}
}