A sleek and functional stopwatch application built using the Kivy framework. This app provides a responsive user interface with real-time updates and supports basic stopwatch functionalities such as start, stop, and reset.
- Real-Time Clock: Displays the current time in hours, minutes, and seconds.
- Stopwatch: Tracks time with precision up to milliseconds.
- Responsive Controls:
- Start/Stop functionality.
- Reset to zero.
- Custom Design:
- Dark theme background color (
#101216). - Roboto font for a modern look.
- Dark theme background color (
To run the application, you need to install the following:
- Python (Version 3.7 or later recommended)
- Kivy Framework
- Pillow Library (for image processing)
- Roboto Fonts:
- Download the fonts here.
- Place
Roboto-Thin.ttfandRoboto-Medium.ttfin the same directory as the script.
kivy-stopwatch/ ├── main.py # Main Python script for the app ├── Roboto-Thin.ttf # Roboto thin font file ├── Roboto-Medium.ttf # Roboto medium font file ├── clockapp.kv # Kivy layout file (if applicable) └── README.md # Project documentation
- Background Color: Modify the
Window.clearcolorvalue inmain.py. - Fonts: Replace
Roboto-Thin.ttfandRoboto-Medium.ttfwith your preferred fonts. - UI Layout: Edit the
.kvfile to redesign the interface.