A beautiful analog clock application built with Flutter.
- Flutter (ensure it's added to your PATH)
- Linux development environment
- Get dependencies:
flutter pub get
- Build for Linux:
The built binary will be located at:
flutter build linux
build/linux/x64/release/bundle/analog_clock
To make your application easily executable from anywhere, you can link the built binary to /usr/local/bin:
-
Link the binary:
sudo ln -sf $(pwd)/build/linux/x64/release/bundle/analog_clock /usr/local/bin/analog_clockThis creates a symbolic link so you can run
analog_clockfrom any terminal. -
(Optional) Make sure the binary is executable:
chmod +x build/linux/x64/release/bundle/analog_clock
Now you can launch the app by simply typing analog_clock in your terminal.
