This is a Plugin that can be use to detect phishing urls

Features

Scan Texts and Images for Urls and scan and check whether they are safe or not

Getting started

Just import this Package and use it on your Project

Usage

  Phish(
                  isIcon: true,
                  iconAlignRight: false,
                  text: "your text here",
                  child: Align(
                    alignment: Alignment.centerLeft,
                    child: Container(
                        decoration: BoxDecoration(
                          color: Colors.grey[300],
                          borderRadius: BorderRadius.circular(10),
                        ),
                        padding: EdgeInsets.all(10),
                        child: Text("Custom Widget")),
                  ),
                  onTap: (url, status, percentage) {

                    print("$url $status $percentage");
                  },
                ),

Additional information

Libraries

phish_detector