{"id":18517607,"url":"https://github.com/hash-studios/qr-scanner-flutter","last_synced_at":"2025-10-12T08:33:15.376Z","repository":{"id":124478505,"uuid":"251113344","full_name":"Hash-Studios/qr-scanner-flutter","owner":"Hash-Studios","description":"A QR code/ barcode scanner made using Flutter.","archived":false,"fork":false,"pushed_at":"2020-03-30T10:58:24.000Z","size":32678,"stargazers_count":12,"open_issues_count":1,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-10T01:50:20.038Z","etag":null,"topics":["android","apk","app","barcode","code","dark","easy","flutter","ios","logo","mode","package","qr","qr-scanner","scanner","ui"],"latest_commit_sha":null,"homepage":null,"language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Hash-Studios.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-03-29T19:16:26.000Z","updated_at":"2025-01-23T17:16:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"d0e0d5c7-6451-4d60-8cdf-3b058ef2842a","html_url":"https://github.com/Hash-Studios/qr-scanner-flutter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Hash-Studios/qr-scanner-flutter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hash-Studios%2Fqr-scanner-flutter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hash-Studios%2Fqr-scanner-flutter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hash-Studios%2Fqr-scanner-flutter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hash-Studios%2Fqr-scanner-flutter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hash-Studios","download_url":"https://codeload.github.com/Hash-Studios/qr-scanner-flutter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hash-Studios%2Fqr-scanner-flutter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279010794,"owners_count":26084807,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","apk","app","barcode","code","dark","easy","flutter","ios","logo","mode","package","qr","qr-scanner","scanner","ui"],"created_at":"2024-11-06T17:05:35.413Z","updated_at":"2025-10-12T08:33:15.365Z","avatar_url":"https://github.com/Hash-Studios.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QR Scanner\n\nA Flutter based QR/Bar code scanner app with dark mode and material design.\n\n- [x] Scan QR codes.\n- [x] Scan barcodes.\n- [x] Show result in a popup.\n- [x] Clicking result open the website.\n- [x] Result automatically gets copied to clipboard.\n- [x] Show snackbar.\n\n## Demo\n\n![Lab: Write your first Flutter app](examples/demo.gif)\n\n## Usage\nYou can simply clone the repository, or if you want to include it in your project simply follow the steps mentioned below.\n\nFirst create a new app using `$ flutter create app_name`.\n\nThis  project has the following dependencies yo need to define in `pubspec.yaml` file.\n```\ndependencies:\n  cupertino_icons: ^0.1.2\n  barcode_scan: ^2.0.1\n  flutter_launcher_icons: ^0.7.4\n  url_launcher: ^5.4.2\n  provider: any\n```\nIt also needs the following assets.\n```\nflutter:\n  uses-material-design: true\n  assets:\n    - assets/images/logo.jfif\n  fonts:\n     - family: IBM Plex Sans\n       fonts:\n         - asset: assets/fonts/IBMPlexSans.ttf\n     - family: Raleway\n       fonts:\n         - asset: assets/fonts/Raleway.ttf\n     - family: Rubik\n       fonts:\n         - asset: assets/fonts/Rubik.ttf\n```\nwhere the `logo.jfif` file is the image shown in the drawer of App.\n\nThen run `$ flutter pub get` to download these packages.\n\nThen import the following packages in `main.dart` file.\n```\nimport 'dart:async';\nimport 'package:flutter/cupertino.dart';\nimport 'package:flutter/material.dart';\nimport 'package:barcode_scan/barcode_scan.dart';\nimport 'package:flutter/services.dart';\nimport './theme_provider.dart';\nimport 'package:provider/provider.dart';\nimport 'package:url_launcher/url_launcher.dart';\nimport 'package:flutter/gestures.dart';\n```\n\nYou also need to add the following permission in `AndroidManifest.xml` file.\n```\n\u003cuses-permission android:name=\"android.permission.CAMERA\" /\u003e\n```\nThen add this new activity inside of it.\n```\n\u003cactivity android:name=\"com.apptreesoftware.barcodescan.BarcodeScannerActivity\"/\u003e\n```\nTo add the SplashScreen logo simply add this line to `android/app/src/main/res/drawable/lauch_background.xml` file.\n```\n    \u003citem\u003e\n        \u003cbitmap\n            android:gravity=\"center\"\n            android:src=\"@drawable/logo\" /\u003e\n    \u003c/item\u003e\n```\nYou also need to add that logo.png inside of the `drawable` folder which is mentioned above.\n\n## Downlaod\n\nYou can download the `apk-release.apk`, for using this application.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhash-studios%2Fqr-scanner-flutter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhash-studios%2Fqr-scanner-flutter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhash-studios%2Fqr-scanner-flutter/lists"}