huawei_push_fcm 6.3.0+304 huawei_push_fcm: ^6.3.0+304 copied to clipboard
Huawei Push-FCM Proxy plugin for Flutter that exposes all the functionality provided by the Huawei Push-FCM Proxy SDK.
/*
Copyright 2021-2022. Huawei Technologies Co., Ltd. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License")
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import 'package:flutter/material.dart';
import 'package:huawei_push/huawei_push.dart';
import 'package:huawei_push_fcm/huawei_push_fcm.dart';
import 'package:huawei_push_fcm_example/widgets/button.dart';
void main() {
runApp(const App());
}
class App extends StatefulWidget {
const App({Key? key}) : super(key: key);
@override
State<App> createState() => _AppState();
}
class _AppState extends State<App> {
late dynamic subscription;
@override
void initState() {
super.initState();
_setCountryCode();
_fcmInit();
subscription = Push.getMultiSenderTokenStream.listen(
(Map<String, dynamic> event) {
debugPrint('Token: ${event['multiSenderToken']}');
},
);
}
@override
void dispose() {
super.dispose();
subscription.cancel();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('HMS Push-FCM Proxy Flutter Plugin'),
),
body: Container(
padding: const EdgeInsets.all(20),
child: Center(
child: Btn(
'Get Token',
_getToken,
),
),
),
),
);
}
void _setCountryCode() {
PushFcm.setCountryCode('RU');
}
void _fcmInit() async {
await PushFcm.init();
}
void _getToken() async {
await Push.getToken('HCM');
}
}