You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi everybody. I built a flet python app and i'm hosting it on a server.
I would like to show it in a mobile device using flutter with the flet package.
I'm wondering where it is possible to give an input data from flutter when I call the flet app.
Something like this:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi everybody. I built a flet python app and i'm hosting it on a server.
I would like to show it in a mobile device using flutter with the flet package.
I'm wondering where it is possible to give an input data from flutter when I call the flet app.
Something like this:
`
import 'package:flet/flet.dart';
import 'package:flutter/material.dart';
void main() async {
await setupDesktop();
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@OverRide
Widget build(BuildContext context) {
return const MaterialApp(
title: 'Flet Flutter Demo',
home: FletApp(pageUrl: "http://localhost:8550", data: ...),
);
}
}
`
Someone can help me?
Beta Was this translation helpful? Give feedback.
All reactions