somedialog 1.0.1 copy "somedialog: ^1.0.1" to clipboard
somedialog: ^1.0.1 copied to clipboard

Flutter package for handle a nice dialog ui using assets, netwok, and lottie

example/lib/main.dart

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

void main() {
  runApp(MyApp());
}

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

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            FlatButton(
              child: Text("Show Dialog"),
              onPressed: () {
                SomeDialog(
                  context: context,
                  path: "assets/report.json",
                  mode: SomeMode.Lottie,

                  content:
                      "Please before tracking, double-check the code you entered!",
                  title: "Are you sure ?",
                  submit: () {
                  }
                );
              },
            )
          ],
        ),
      ),
    );
  }
}
28
likes
40
pub points
8%
popularity

Publisher

unverified uploader

Flutter package for handle a nice dialog ui using assets, netwok, and lottie

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

cached_network_image, flutter, google_fonts, lottie

More

Packages that depend on somedialog