One UI in flutter
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.
 
 
 
 
 
 

14 lines
292 B

import 'package:js/js.dart';
// ignore: avoid_web_libraries_in_flutter
import 'dart:html' as html;
@JS('fx_initial_route')
external String fxInitialRoute();
String? getToken() {
return html.window.localStorage['token'];
}
String? getUser() {
return html.window.localStorage['user'];
}