ktoast 1.0.3 copy "ktoast: ^1.0.3" to clipboard
ktoast: ^1.0.3 copied to clipboard

discontinuedreplaced by: oktoast

A pure flutter toast library, easy to use. You can use this library to achieve the same effect as Android toast.

ktoast #

pub package

A library for flutter.

A pure dart toast Library.

change name #

now the ktoast change name to oktoast pub package

the version 1.0.3 is last version library.

fix all bug.

This library will not be updated.

The library will depend on oktoast library,unchanged usage.

screenshot #

image

use #

  1. add library to your pubspec.yaml
dependencies:
  ktoast: ^1.0.2
  1. import library in dart file
import 'package:ktoast/ktoast.dart';
  1. wrap your app widget
KToast(
  /// set toast style
  child:MaterialApp()
);
  1. call method showToast
showToast(context, "content", second: 2, position: ToastPosition.bottom); // position and second have default value, is optional
// second and position is optional

properties #

textStyle: the toast text style
radius: the toast background color radius
backgroundColor: the background color
position: the toast align and padding
child: the application

examples #

import 'package:flutter/material.dart';
import 'package:ktoast/ktoast.dart'; // 1. import library

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return KToast(
      //2. wrap your app with KToast
      textStyle: TextStyle(fontSize: 19.0, color: Colors.white),
      backgroundColor: Colors.grey,
      radius: 10.0,
      child: new MaterialApp(
        title: 'Flutter Demo',
        theme: new ThemeData(
          primarySwatch: Colors.blue,
        ),
        home: new MyHomePage(),
      ),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key}) : super(key: key);

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

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    _counter++;
    showToast(context, "$_counter", second: 2, position: ToastPosition.bottom); //3. show toast
  }

  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text("ktoast demo"),
      ),
      body: Stack(
        children: <Widget>[
          new Center(
            child: ListView(
              children: <Widget>[
                new Text(
                  'You have pushed the button this many times:',
                ),
                new Text(
                  '$_counter',
                  style: Theme.of(context).textTheme.display1,
                ),
                Padding(
                  padding: const EdgeInsets.all(8.0),
                  child: RaisedButton(
                    onPressed: () {
                      Navigator.push(context, MaterialPageRoute(builder: (ctx) => MyHomePage()));
                    },
                  ),
                ),
                Padding(
                  padding: const EdgeInsets.all(8.0),
                  child: RaisedButton(
                    onPressed: _incrementCounter,
                    child: Text('toast'),
                  ),
                ),
              ],
            ),
          ),
        ],
      ),
    );
  }
}
0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A pure flutter toast library, easy to use. You can use this library to achieve the same effect as Android toast.

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

flutter, oktoast

More

Packages that depend on ktoast