Skip to content

Instantly share code, notes, and snippets.

@hugeorange
hugeorange / toast.dart
Created June 3, 2023 08:44
Flutter Overlay 创建自定义 Toast
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:tablet/components/text/index.dart';
import 'package:tablet/style/color.dart';
class Toast {
static int duration = 2500;
static OverlayEntry? _overlayEntry;