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.
21 lines
605 B
Dart
21 lines
605 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:test_sa/extensions/context_extension.dart';
|
|
import 'package:test_sa/new_views/common_widgets/default_app_bar.dart';
|
|
|
|
class UpdateServiceRequestPage extends StatelessWidget {
|
|
static const String id = "/update_service_request_page";
|
|
const UpdateServiceRequestPage({Key key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: DefaultAppBar(title: context.translation.updateServiceRequest),
|
|
body: SafeArea(
|
|
child: Column(
|
|
children: [],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|