8 lines
349 B
Dart
8 lines
349 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'; |