11 lines
365 B
Dart
11 lines
365 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
String getMapURL(BuildContext context) {
|
|
final bool iOS = Theme.of(context).platform == TargetPlatform.iOS;
|
|
return iOS
|
|
? 'http://maps.apple.com/?address='
|
|
: 'https://maps.google.com/?q=';
|
|
}
|
|
|
|
String getPlatform(BuildContext context) =>
|
|
Theme.of(context).platform == TargetPlatform.iOS ? 'ios' : 'android'; |