基础库
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.
 
 
 
 
 

11 lines
284 B

  1. import 'package:fluwx/fluwx.dart';
  2. class LauncherWxMiniProgram {
  3. static Future open(Map<String, dynamic> data) async {
  4. if (data == null) {
  5. return false;
  6. }
  7. print(data);
  8. return await launchWeChatMiniProgram(username: data['user_name'],path: data['page']);
  9. }
  10. }