ios_specific_csx 0.1.0 copy "ios_specific_csx: ^0.1.0" to clipboard
ios_specific_csx: ^0.1.0 copied to clipboard

outdated

A new flutter plugin project.

example/lib/main.dart

/*
 * @Author: Cao Shixin
 * @Date: 2021-03-26 10:21:00
 * @LastEditors: Cao Shixin
 * @LastEditTime: 2021-05-08 16:35:52
 * @Description: 
 * @Email: cao_shixin@yahoo.com
 * @Company: BrainCo
 */
import 'package:flutter/material.dart';
import 'package:ios_specific_csx/ios_specific_csx.dart';
import 'package:ios_specific_csx/specific_enum.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  final String title;

  MyHomePage({Key key, this.title}) : super(key: key);

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: Text(widget.title),
        ),
        body: ListView(
          children: [
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx.instance.healthHandle
                    .addHealthMindfulness(DateTime(2021, 3, 26, 14, 10),
                        DateTime(2021, 3, 26, 14, 20))
                    .then((result) {
                  print('mindfulness加入结果:${result.toJson()}');
                });
              },
              child: Text("加入mindfulnes数据"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx()
                    .healthHandle
                    .getHealthAuthorityStatus(
                        HealthAppSubclassification.Mindfulness)
                    .then((result) {
                  print('mindfulness权限:$result');
                });
              },
              child: Text("获取mindfulness当前的权限信息"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx.instance.healthHandle
                    .addHealthStature(170)
                    .then((value) => print(value.errorDescri));
              },
              child: Text("写入身高"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx()
                    .healthHandle
                    .addHealthStature(170)
                    .then((value) => print(value.errorDescri));
              },
              child: Text("写入身高"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx.instance.healthHandle
                    .addHealthStature(170)
                    .then((value) => print(value.errorDescri));
              },
              child: Text("写入身高"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx()
                    .healthHandle
                    .addHealthStature(170)
                    .then((value) => print(value.errorDescri));
              },
              child: Text("写入身高"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx.instance.healthHandle
                    .addHealthStature(170)
                    .then((value) => print(value.errorDescri));
              },
              child: Text("写入身高"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx()
                    .healthHandle
                    .addHealthStature(170)
                    .then((value) => print(value.errorDescri));
              },
              child: Text("写入身高"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx.instance.healthHandle
                    .addHealthStature(170)
                    .then((value) => print(value.errorDescri));
              },
              child: Text("写入身高"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx()
                    .healthHandle
                    .addHealthStature(170)
                    .then((value) => print(value.errorDescri));
              },
              child: Text("写入身高"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx.instance.healthHandle
                    .addHealthStature(170)
                    .then((value) => print(value.errorDescri));
              },
              child: Text("写入身高"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx()
                    .healthHandle
                    .addHealthStature(170)
                    .then((value) => print(value.errorDescri));
              },
              child: Text("写入身高"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx.instance.healthHandle
                    .addHealthStature(170)
                    .then((value) => print(value.errorDescri));
              },
              child: Text("写入身高"),
            ),
            ElevatedButton(
              onPressed: () {
                IosSpecificCsx.instance.commonHandle.platformVersion
                    .then((value) => print('$value'));
              },
              child: Text("通用处理"),
            ),
          ],
        ));
  }
}
0
likes
0
pub points
28%
popularity

Publisher

unverified uploader

A new flutter plugin project.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on ios_specific_csx