first commit
This commit is contained in:
22
untitled/lib/views/Me/Agent.dart
Normal file
22
untitled/lib/views/Me/Agent.dart
Normal file
@@ -0,0 +1,22 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:peach/config/_.dart';
|
||||
|
||||
class Agent extends StatefulWidget {
|
||||
|
||||
@override
|
||||
State createState() => _Agent();
|
||||
}
|
||||
|
||||
class _Agent extends State<Agent> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
backgroundColor: ColorConfig.ThemeColor,
|
||||
title: Text("代理操作教程"),
|
||||
),
|
||||
body: Text("代理操作教程"),
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user