m_toast 0.0.5 copy "m_toast: ^0.0.5" to clipboard
m_toast: ^0.0.5 copied to clipboard

mtoast

example/lib/main.dart

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


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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

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

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  ShowMToast toast = ShowMToast();

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            OutlinedButton(
              onPressed: (){
                toast.successToast(context, message: "bsjhjshj");
              },
              child: Text("Show Success Toast"),
            ),
            OutlinedButton(
              onPressed: (){
                toast.errorToast(context, message: "dhsdkjw",);
              },
              child: Text("Show Error Toast"),
            ),
          ],
        )
      ),
    );
  }
}