huawei_nearbyservice 6.4.0+300 copy "huawei_nearbyservice: ^6.4.0+300" to clipboard
huawei_nearbyservice: ^6.4.0+300 copied to clipboard

PlatformAndroid

Nearby Service Data Communication allows apps to easily discover nearby devices and set up communication with them using technologies such as Bluetooth and Wi-Fi.

example/lib/main.dart

/*
    Copyright 2020-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:flutter/services.dart';
import 'package:huawei_nearbyservice_example/pages/discovery_transfer_page.dart';
import 'package:huawei_nearbyservice_example/pages/message_page.dart';
import 'package:huawei_nearbyservice_example/pages/nearby_menu_page.dart';
import 'package:huawei_nearbyservice_example/pages/wifi_share_page.dart';
import 'package:huawei_nearbyservice_example/utils/constants.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  SystemChrome.setPreferredOrientations(
    <DeviceOrientation>[
      DeviceOrientation.portraitUp,
    ],
  );
  await requestPermissions();
  runApp(const HmsNearbyDemo());
}

// TODO: Please implement your own 'Permission Handler'.
Future<void> requestPermissions() async {
  // Huawei Nearby Service needs some permissions to work properly.
  // You are expected to handle these permissions to use Huawei Nearby Service Demo.

  // You can learn more about the required permissions from our official documentations.
  // https://developer.huawei.com/consumer/en/doc/development/HMS-Plugin-Guides/dev-process-0000001073825475?ha_source=hms1
}

class HmsNearbyDemo extends StatelessWidget {
  const HmsNearbyDemo({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      initialRoute: Routes.menuPage,
      routes: <String, WidgetBuilder>{
        '/': (BuildContext context) => const NearbyMenuPage(),
        Routes.discoveryAndTransfer: (BuildContext context) =>
            const DiscoveryTransferPage(),
        Routes.wifi: (BuildContext context) => const WifiSharePage(),
        Routes.message: (BuildContext context) => const MessagingPage(),
      },
    );
  }
}
3
likes
120
pub points
0%
popularity

Publisher

verified publisherdeveloper.huawei.com

Nearby Service Data Communication allows apps to easily discover nearby devices and set up communication with them using technologies such as Bluetooth and Wi-Fi.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on huawei_nearbyservice