30 lines
825 B
Dart
30 lines
825 B
Dart
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
import '../../app_settings/app_colors.dart';
|
|
import '../../tools/titleAppBar.dart';
|
|
import '../../translations/trans_lib.dart';
|
|
|
|
class ValueAddedServicesPage extends StatefulWidget {
|
|
const ValueAddedServicesPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<ValueAddedServicesPage> createState() => _ValueAddedServicesPageState();
|
|
}
|
|
|
|
class _ValueAddedServicesPageState extends State<ValueAddedServicesPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: const Color(0xFFFFFFFF),
|
|
appBar: TitleAppBar(barTitle: TranslationLoader.lanKeys!.valueAddedServices!.tr, haveBack:true, backgroundColor: AppColors.mainColor),
|
|
body: Column(
|
|
children: [
|
|
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|