You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
333 B
14 lines
333 B
4 years ago
|
import 'package:aku_community_manager/ui/widgets/common/aku_scaffold.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class AgreementPage extends StatelessWidget {
|
||
|
const AgreementPage({Key key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return AkuScaffold(
|
||
|
title: '服务协议',
|
||
|
);
|
||
|
}
|
||
|
}
|