fl_jpush_android 1.1.0 fl_jpush_android: ^1.1.0 copied to clipboard
JPush integrated vendor push channel,Valid only on Android devices
import 'package:flutter/material.dart';
void main() {
runApp(const MaterialApp(home: MyApp()));
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('FlJPush with Android')),
body: const Center(child: Text('集成厂商通道')));
}
}