hi_config_ios 1.0.1 copy "hi_config_ios: ^1.0.1" to clipboard
hi_config_ios: ^1.0.1 copied to clipboard

PlatformiOS

iOS implementation of the hi_config plugin.

example/lib/main.dart

import 'dart:developer';
import 'package:flutter/material.dart';
import 'package:hi_config_ios/hi_config_ios.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('hi_config_ios'),
        ),
        body: Center(
          child: InkWell(
            onTap: _doTap,
            child: const Text('test'),
          ),
        ),
      ),
    );
  }

  void _doTap() async {
    final result = await HiConfigIOS().baseLink();
    log('result: $result');
  }
}
1
likes
105
points
12
downloads

Publisher

unverified uploader

Weekly Downloads

iOS implementation of the hi_config plugin.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter, hi_config_platform_interface

More

Packages that depend on hi_config_ios

Packages that implement hi_config_ios