abw_flutter_sdk_v2 0.5.1 copy "abw_flutter_sdk_v2: ^0.5.1" to clipboard
abw_flutter_sdk_v2: ^0.5.1 copied to clipboard

PlatformAndroid

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',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
          primarySwatch: Colors.blue,
          fontFamily: "Arial",
          textTheme: TextTheme(
              button: TextStyle(color: Colors.white, fontSize: 18.0),
              subtitle1: TextStyle(color: Colors.red))),
      home: HomePage(),
    );
  }
}