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.
cloudsolutions-atoms/lib/new_views/pages/new_gas_refill_request_page...

17 lines
501 B
Dart

import 'package:flutter/material.dart';
import 'package:test_sa/models/enums/translation_keys.dart';
import '../common_widgets/default_app_bar.dart';
class NewGasRefillRequestPage extends StatelessWidget {
static const String routeName = "/new_gas_refill_request_page";
const NewGasRefillRequestPage({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const Scaffold(
appBar: DefaultAppBar(title: TranslationKeys.newGasRefillRequest),
);
}
}