aliyun_httpdns 0.0.2
aliyun_httpdns: ^0.0.2 copied to clipboard
Aliyun HTTPDNS Flutter plugin.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:flutter_httpdns_plugin_example/home.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
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: HomePage()
);
}
}