abw_sample_packagev1 0.0.4
abw_sample_packagev1: ^0.0.4 copied to clipboard
To be able to show ABW features like DHA
example/lib/main.dart
import 'package:flutter/material.dart';
import 'home.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Web Views',
theme: ThemeData(
primarySwatch: Colors.blue,
fontFamily: "Arial",
textTheme: TextTheme(
button: TextStyle(color: Colors.white, fontSize: 18.0),
subtitle1: TextStyle(color: Colors.red))),
home: Home(),
);
}
}