Beeware claims "Write your apps in Python and release them on iOS, Android, Windows, MacOS, Linux, Web, and tvOS using rich, native user interfaces. Multiple apps, one codebase, with a fully native user experience on every platform."
I'm trying to run the beeware tutorial.
When adding a toga.WebView I get the following error message when running briefcase run -u:
** (__main__.py:25869): WARNING **: 16:57:29.287: Failed to load shared library 'libwebkit2gtk-4.0.so.37' referenced…
In the beeware example tutorial there is example code to show a single layout. How do you create multiple layouts and switch between them.
class HelloWorld(toga.App):
def startup(self):
main_box = toga.Box(style=Pack(direction=COLUMN))
…
i have building problem in android studio, i have made an android app with beeware and when i am trying to build it i get an error.
I have tried building it from android studio and i fixed all the versions problems and everything else except this…
I'm trying to generate random numbers in Python code running on the JVM with PyBee's VOC transpiler. For now, it looks like the Python random module isn't included, so how can I generate random numbers?
Here's the code I tried to transpile:
from…
I'm going to create a simple android apk file using python and BeeWare
I installed BeeWare and togo in a virtual env
when I write briefcase new or briefcase create and press Enter, I got this error:
The location Briefcase will use to store tools and…
I want to access data from a row of my table and display it in the terminal when that row is double-clicked.
import toga
from toga.style import Pack
from toga.style.pack import COLUMN, ROW
class HelloWorld(toga.App):
def startup(self):
…
briefcase packaging with streamlit running successfully in "briefcase dev" command but shows , localhost refused to connect problem.
It runs without any issues opening in briefcase dev command- automatically allocating port.
I disbaled proxies…
I am in the process of trying to developp a small app with BeeWare for Android for my own use. The purpose of the app is to pick a random word from a pre-built list, and ask the user for the translation (english to korean, or korean to english), and…
I m new to Beeware and Toga and i don't know how to make the column width bigger, so that the full text is displayed. When i execute the app in Linux the table works fine, but on Windows this happens
How can i make the table colums wider by default?…
I am trying to build an app with Toga/Beeware, mainly for Android but ideally cross-platform. I need the app to send push notifications at user-specified times. I see some have previously attempted the same challenge, but there's currently no…
I am trying to import beautifulsoup4in a BeeWare app (with its own virtual environment) using the command:
from bs4 import BeautifulSoup
But I get a ModuleNotFoundError: No module named 'bs4' even though I have installed beautifulsoup4 in my…
I'm making a GUI app for a package manager I'm working on, but I don't if you can install APKs programmatically using Beeware. I'm using Beeware because it's the only library I'm comfortable using.
I want to access the contacts, their names and phone numbers in my programs and use them in my program, and also how can I make a phone call with a number by pressing a button. I could not find this feature in beeware. Please guide me if possible,…