Skip to content

Flutter build windows app not run when move it to different directory #93

Open
@Kaioken3000

Description

@Kaioken3000

My flutter windows build application run normally after i build it, but when i copy the build directory to another folder it doesn't run.

i think it because something is wrong with the serius_python plugin, because it happend only after i add it to my code.

here the code:

Future main() async {
WidgetsFlutterBinding.ensureInitialized();
speechToText();

// runApp(const LoginPageAdmin());
runApp(
MultiProvider(
providers: [
ChangeNotifierProvider(create: (_) => Progress()),
],
child: const LoginPageAdmin(),
),
);
}

Future speechToText() async {
await SeriousPython.runProgram(
"D:/D/demofastapi/main.pyc",
sync: false,
);
}

Please help!!!!

I just want it to run

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions