WIP #49 Add location update interval settings
This commit is contained in:
27
lib/panels/widgets/link_to_web_config.dart
Normal file
27
lib/panels/widgets/link_to_web_config.dart
Normal file
@ -0,0 +1,27 @@
|
||||
part of '../../main.dart';
|
||||
|
||||
class LinkToWebConfig extends StatelessWidget {
|
||||
|
||||
final String name;
|
||||
final String url;
|
||||
|
||||
const LinkToWebConfig({Key key, @required this.name, @required this.url}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Card(
|
||||
child: Column(
|
||||
children: <Widget>[
|
||||
ListTile(
|
||||
title: Text("${this.name}",
|
||||
textAlign: TextAlign.left,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
style: new TextStyle(fontWeight: FontWeight.bold, fontSize: Sizes.largeFontSize)),
|
||||
subtitle: Text("Tap to opne web version"),
|
||||
onTap: () => HAUtils.launchURLInCustomTab(context: context, url: this.url),
|
||||
)
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user