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.
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.
// Flutter imports:
import ' package:flutter/material.dart ' ;
// Project imports:
import ' package:akuCommunity/utils/headers.dart ' ;
import ' package:akuCommunity/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 ( ) ,
] ,
) ,
) ;
}
}