baseproject
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class EditSystemParams extends StatelessWidget {
|
||||
const EditSystemParams({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
leading: IconButton(
|
||||
onPressed: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
icon: Icon(Icons.adaptive.arrow_back),
|
||||
),
|
||||
title: const Text("Edit System Parameters"),
|
||||
),
|
||||
|
||||
);
|
||||
}
|
||||
}
|
||||
1399
base_project/lib/view/system_parameters/system_parameters.dart
Normal file
1399
base_project/lib/view/system_parameters/system_parameters.dart
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user