How can I open windows applications like notepad and paint using flutter windows desktop?

269 Views Asked by At

How can I open windows applications from my app, like notepad and paint using flutter windows?

Container(
                height: 60,
                width: 120,
                alignment: Alignment.center,
                decoration: BoxDecoration(
                    color: Colors.blue,
                    borderRadius: BorderRadius.circular(10)),
                child: RawMaterialButton(
                  child: Text(
                    "Notepad",
                    style: TextStyle(
                        color: Colors.black,
                        fontSize: 15,
                        fontWeight: FontWeight.w500),
                  ),
                  onPressed: () {},
                )),
1

There are 1 best solutions below

0
On

You can use start or run function from Process class included in dart:io package.