You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
627 B
Dart
25 lines
627 B
Dart
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class LaserBooking extends StatefulWidget {
|
|
@override
|
|
_LaserBookingState createState() => _LaserBookingState();
|
|
}
|
|
|
|
class _LaserBookingState extends State<LaserBooking> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AppScaffold(
|
|
isShowDecPage: false,
|
|
isShowAppBar: true,
|
|
showNewAppBarTitle: true,
|
|
showNewAppBar: true,
|
|
appBarTitle: "Laser",
|
|
body: Container(
|
|
child: Column(
|
|
children: [],
|
|
),
|
|
));
|
|
}
|
|
}
|