diff --git a/README.md b/README.md
index 42994f7e..fbb79e76 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,24 @@
-# Chrono
+
-#### 🚧 Development temporarily paused. Stay tuned for updates! 🚧
-A modern and powerful clock, alarms, timer and stopwatch app for Android!
+
-Its usable, but still WIP, so you might encounter some bugs. Feel free to open an issue.
+# Chrono
+
+### A modern and powerful clock, alarms, timer and stopwatch app for Android!

[](https://codecov.io/gh/vicolo-dev/chrono)
[](https://app.codacy.com/gh/vicolo-dev/chrono/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
+[
](https://apt.izzysoft.de/fdroid/index/apk/com.vicolo.chrono)
+[
](https://github.com/vicolo-dev/chrono/releases/latest)
+
+
+
+Its usable, but still WIP, so you might encounter some bugs. Feel free to open an issue.
+
# Table of Content
- [Features](#features)
-- [Installation](#installation)
- [Platforms](#platforms)
- [Development](#development)
- [Todo](#todo)
@@ -39,10 +46,6 @@ Its usable, but still WIP, so you might encounter some bugs. Feel free to open a
- Highly customizable color themes
- Highly customizable style themes
-## Installation
-- Download the relevant apk from the [latest release](https://github.com/vicolo-dev/chrono/releases/latest/)
-- Install (make sure to allow install from unknown sources)
-
## Platforms
Currently, the app is only available for android. I don't have an apple device to develop for iOS, but feel free
to contribute if you want iOS support. The alarm and timer features
diff --git a/lib/settings/screens/about_screen.dart b/lib/settings/screens/about_screen.dart
index 469b0c59..5010aa05 100644
--- a/lib/settings/screens/about_screen.dart
+++ b/lib/settings/screens/about_screen.dart
@@ -108,6 +108,44 @@ class AboutScreen extends StatelessWidget {
),
],
),
+ const SizedBox(height: 8.0),
+ InkWell(
+ onTap: () async {
+ await launchUrl(Uri.parse(
+ "https://github.com/vicolo-dev/chrono/blob/master/LICENSE"));
+ },
+ child: Row(
+ children: [
+ SizedBox(
+ width: 48,
+ child: Icon(
+ Icons.balance_rounded,
+ color: colorScheme.onSurface,
+ ),
+ ),
+ const SizedBox(width: 16.0),
+ Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Text(
+ "License",
+ style: textTheme.bodyMedium?.copyWith(
+ color: colorScheme.onSurface,
+ ),
+ ),
+ Text(
+ packageInfo?.packageName ?? 'GNU GPL v3.0',
+ style: textTheme.bodyMedium?.copyWith(
+ color:
+ colorScheme.onBackground.withOpacity(0.6),
+ ),
+ ),
+ ],
+ ),
+ ],
+ ),
+ ),
+
const SizedBox(height: 8.0),
InkWell(
onTap: () async {
@@ -133,6 +171,8 @@ class AboutScreen extends StatelessWidget {
],
),
),
+
+
],
),
),