We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Will take a look.
Please do not create duplicates.
Sorry, something went wrong.
What error do you get (in the console or a dialog)?
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: