22 lines
323 B
Dart
22 lines
323 B
Dart
@JS()
|
|
library js_introp;
|
|
|
|
import 'package:js/js.dart';
|
|
|
|
@JS()
|
|
external _showAlert(String message);
|
|
|
|
@JS()
|
|
external _reqFullScreen();
|
|
|
|
class JsInteropService {
|
|
showAlert() {
|
|
_showAlert(
|
|
'Helooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo MF');
|
|
}
|
|
|
|
fullScreen() {
|
|
_reqFullScreen();
|
|
}
|
|
}
|