global_settings_list 0.1.1 copy "global_settings_list: ^0.1.1" to clipboard
global_settings_list: ^0.1.1 copied to clipboard

PlatformAndroid

Flutter Plugin for getting List of Settings.Global on Android

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:global_settings_list/global_settings_list.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown', _autoTimezone, _autoTime, _daftar = "";
  Map<String, dynamic> _list;

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion, autoTimezone, autoTime;
    Map<String, dynamic> list;

    try {
      autoTimezone = await GlobalSettingsList.autoTimeZone;
      list = await GlobalSettingsList.list;
      //autoTime = await GlobalSettingsList.autoTime;
    } on PlatformException {
      autoTimezone = 'Gagal';
      autoTime = 'Gagal';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _platformVersion = platformVersion;
      _autoTimezone = autoTimezone;
      _autoTime = autoTime;
      _list = list;
      _daftar = "";

      list.forEach((k, v) {
        _daftar += "$k : $v \n";
      });
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Column(
            children: <Widget>[
              Text('Running on: $_platformVersion\n'),
              Text('Auto Timezone : $_autoTimezone'),
              Text('Auto Time : $_autoTime'),
              RaisedButton(
                child: Text("Load"),
                onPressed: initPlatformState,
              ),
              Expanded(
                  flex: 1,
                  child: SingleChildScrollView(child: Text(_daftar ?? "tes")))
            ],
          ),
        ),
      ),
    );
  }
}
2
likes
130
pub points
76%
popularity

Publisher

unverified uploader

Flutter Plugin for getting List of Settings.Global on Android

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on global_settings_list