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.
aku_new_community/lib/pages/one_alarm/alarm_detail_page.dart

27 lines
804 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import 'package:flutter/material.dart';
import 'package:aku_community/utils/headers.dart';
import 'package:aku_community/widget/bee_scaffold.dart';
class AlarmDetailPage extends StatelessWidget {
const AlarmDetailPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return BeeScaffold(
title: '功能说明',
body: ListView(
padding: EdgeInsets.all(32.w),
children: [
'一键报警'.text.size(32.sp).bold.make(),
20.hb,
'点击“呼叫110”后您可以直接拨打本地110。页面中提供了您当前所在位置以便您与警方沟通。GPS信号弱时位置可能存在偏移'
.text
.size(28.sp)
.make(),
],
),
);
}
}