flutter_quickom_widget 0.0.1 copy "flutter_quickom_widget: ^0.0.1" to clipboard
flutter_quickom_widget: ^0.0.1 copied to clipboard

A widget helps quick integration to Quickom service

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_quickom_widget/flutter_quickom_widget.dart';

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Flutter Demo',
      theme: new ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: new HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Quickom'),
      ),
      body: Center(
        child: SizedBox(
          // width: 200, height: 200,
          child: FlutterQuickomWidget(width: 300, height: 500,),
        )
      ),
    );
  }
}
1
likes
120
points
13
downloads

Publisher

unverified uploader

Weekly Downloads

A widget helps quick integration to Quickom service

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter, webview_flutter

More

Packages that depend on flutter_quickom_widget