smart_utils 1.0.2
smart_utils: ^1.0.2 copied to clipboard
一个简单的webview基本壳子的工具库.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:smart_utils_example/routeMap.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'smart-utils',
theme: ThemeData(
primarySwatch: Colors.blue,
),
routes: routeMap,
);
}
}