-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b3f410
commit 0b5abc3
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[Desktop Entry] | ||
Type=Application | ||
Name=Qr Scanner | ||
Comment=A Qrcode scanner/generator | ||
Categories=Utility; | ||
Icon=${SNAP}/meta/gui/v1.png | ||
Exec=qr-scanner | ||
Terminal=false |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: qr-scanner | ||
version: 1.0.0 | ||
summary: A Qrcode scanner/generator | ||
description: An ad-free multi-platform Qr code scanner and generator | ||
|
||
confinement: strict | ||
base: core18 | ||
grade: stable | ||
|
||
apps: | ||
qr-scanner: | ||
command: qr | ||
extensions: [flutter-master] # Where "master" defines which Flutter channel to use for the build | ||
plugs: | ||
- home | ||
parts: | ||
qr-scanner: | ||
source: . | ||
plugin: flutter | ||
flutter-target: lib/main.dart # The main entry-point file of the application |