abw_flutter_sdk 0.9.0
abw_flutter_sdk: ^0.9.0 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: HomePage(),
);
}
}