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.
22 lines
669 B
Dart
22 lines
669 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:test_sa/models/enums/translation_keys.dart';
|
|
|
|
import '../common_widgets/app_filled_button.dart';
|
|
import '../common_widgets/default_app_bar.dart';
|
|
|
|
class NewServiceRequestPage extends StatelessWidget {
|
|
static const String routeName = "/new_service_request_page";
|
|
const NewServiceRequestPage({Key key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: const DefaultAppBar(title: TranslationKeys.newServiceRequest),
|
|
floatingActionButton: AppFilledButton(
|
|
label: TranslationKeys.submitRequest,
|
|
onPressed: () {},
|
|
),
|
|
);
|
|
}
|
|
}
|