Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ginkgo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Fred
ginkgo
Commits
c7d5d26b
Commit
c7d5d26b
authored
9 months ago
by
fred
Browse files
Options
Downloads
Patches
Plain Diff
oué
parent
1e6141bf
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.metadata
+20
-11
20 additions, 11 deletions
.metadata
lib/ui/qr_manager_mobile.dart
+39
-0
39 additions, 0 deletions
lib/ui/qr_manager_mobile.dart
lib/ui/screens/second_screen.dart
+1
-1
1 addition, 1 deletion
lib/ui/screens/second_screen.dart
pubspec.lock
+21
-21
21 additions, 21 deletions
pubspec.lock
with
81 additions
and
33 deletions
.metadata
+
20
−
11
View file @
c7d5d26b
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled.
# This file should be version controlled
and should not be manually edited
.
version:
revision:
4d9e56e694b656610ab87fcf2efbcd226e0ed8cf
channel: stable
revision:
"5dcb86f68f239346676ceb1ed1ea385bd215fba1"
channel:
"
stable
"
project_type: app
...
...
@@ -13,17 +13,26 @@ project_type: app
migration:
platforms:
- platform: root
create_revision: 4d9e56e694b656610ab87fcf2efbcd226e0ed8cf
base_revision: 4d9e56e694b656610ab87fcf2efbcd226e0ed8cf
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
- platform: android
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
- platform: ios
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
- platform: linux
create_revision:
4d9e56e694b656610ab87fcf2efbcd226e0ed8cf
base_revision:
4d9e56e694b656610ab87fcf2efbcd226e0ed8cf
create_revision:
5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision:
5dcb86f68f239346676ceb1ed1ea385bd215fba1
- platform: macos
create_revision: 4d9e56e694b656610ab87fcf2efbcd226e0ed8cf
base_revision: 4d9e56e694b656610ab87fcf2efbcd226e0ed8cf
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
- platform: web
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
- platform: windows
create_revision:
4d9e56e694b656610ab87fcf2efbcd226e0ed8cf
base_revision:
4d9e56e694b656610ab87fcf2efbcd226e0ed8cf
create_revision:
5dcb86f68f239346676ceb1ed1ea385bd215fba1
base_revision:
5dcb86f68f239346676ceb1ed1ea385bd215fba1
# User provided section
...
...
This diff is collapsed.
Click to expand it.
lib/ui/qr_manager_mobile.dart
+
39
−
0
View file @
c7d5d26b
...
...
@@ -37,3 +37,42 @@ class QrManager {
return
result
.
rawContent
;
}
}
// lib/ui/ui_helpers.dart
import
'package:flutter/material.dart'
;
Future
<
String
?
>
showTextInputDialog
({
required
BuildContext
context
,
required
String
title
,
required
String
hint
,
})
async
{
String
?
input
;
await
showDialog
<
String
>(
context:
context
,
builder:
(
BuildContext
context
)
{
return
AlertDialog
(
title:
Text
(
title
),
content:
TextField
(
onChanged:
(
String
value
)
{
input
=
value
;
},
decoration:
InputDecoration
(
hintText:
hint
),
),
actions:
<
Widget
>[
TextButton
(
onPressed:
()
{
Navigator
.
of
(
context
)
.
pop
();
},
child:
const
Text
(
'Cancel'
),
),
TextButton
(
onPressed:
()
{
Navigator
.
of
(
context
)
.
pop
(
input
);
},
child:
const
Text
(
'OK'
),
),
],
);
},
);
return
input
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
lib/ui/screens/second_screen.dart
+
1
−
1
View file @
c7d5d26b
import
'package:easy_localization/easy_localization.dart'
;
import
'package:flutter/material.dart'
;
import
'package:tuple/tuple.dart'
;
import
'../tutorial.dart'
;
import
'../widgets/card_drawer.dart'
;
import
'../widgets/second_screen/card_terminal.dart'
;
...
...
This diff is collapsed.
Click to expand it.
pubspec.lock
+
21
−
21
View file @
c7d5d26b
...
...
@@ -85,10 +85,10 @@ packages:
dependency: transitive
description:
name: bip32_ed25519
sha256: "
8c739df5d7a05ac2d08dd355062313d84f41244d05cf6cc953c9f0bca66b1fdf
"
sha256: "
292ef300ce24a140ce2814e593af6fc2fe20185ffded9a9bd99ce7c22abd7657
"
url: "https://pub.dev"
source: hosted
version: "0.
2.2
"
version: "0.
5.0
"
bip39_mnemonic:
dependency: transitive
description:
...
...
@@ -407,7 +407,7 @@ packages:
path: "../durt"
relative: true
source: path
version: "0.1.
7
"
version: "0.1.
8
"
easy_debounce:
dependency: "direct main"
description:
...
...
@@ -1025,26 +1025,26 @@ packages:
dependency: transitive
description:
name: leak_tracker
sha256: "7
8eb209deea09858f5269f5a5b02be4049535f568c07b275096836f01ea323f
a"
sha256: "7
f0df31977cb2c0b88585095d168e689669a2cc9b97c309665e3386f3e9d341
a"
url: "https://pub.dev"
source: hosted
version: "10.0.
0
"
version: "10.0.
4
"
leak_tracker_flutter_testing:
dependency: transitive
description:
name: leak_tracker_flutter_testing
sha256:
b46c5e37c19120a8a01918cfaf293547f47269f7cb4b0058f21531c2465d6ef0
sha256:
"06e98f569d004c1315b991ded39924b21af84cf14cc94791b8aea337d25b57f8"
url: "https://pub.dev"
source: hosted
version: "
2
.0.
1
"
version: "
3
.0.
3
"
leak_tracker_testing:
dependency: transitive
description:
name: leak_tracker_testing
sha256:
a597f72a664dbd293f3bfc51f9ba69816f84dcd403cdac7066cb3f6003f3ab47
sha256:
"6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3"
url: "https://pub.dev"
source: hosted
version: "
2
.0.1"
version: "
3
.0.1"
lehttp_overrides:
dependency: "direct main"
description:
...
...
@@ -1105,10 +1105,10 @@ packages:
dependency: transitive
description:
name: meta
sha256:
d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04
sha256:
"7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136"
url: "https://pub.dev"
source: hosted
version: "1.1
1
.0"
version: "1.1
2
.0"
mime:
dependency: transitive
description:
...
...
@@ -1281,10 +1281,10 @@ packages:
dependency: transitive
description:
name: pinenacl
sha256:
e5fb0bce1717b7f136f35ee98b5c02b3e6383211f8a77ca882fa7812232a07b9
sha256:
"3a5503637587d635647c93ea9a8fecf48a420cc7deebe6f1fc85c2a5637ab327"
url: "https://pub.dev"
source: hosted
version: "0.
3.4
"
version: "0.
5.1
"
platform:
dependency: transitive
description:
...
...
@@ -1750,26 +1750,26 @@ packages:
dependency: transitive
description:
name: test
sha256:
a1f7595805820fcc05e5c52e3a231aedd0b72972cb333e8c738a8b1239448b6f
sha256:
"7ee446762c2c50b3bd4ea96fe13ffac69919352bd3b4b17bac3f3465edc58073"
url: "https://pub.dev"
source: hosted
version: "1.2
4.9
"
version: "1.2
5.2
"
test_api:
dependency: transitive
description:
name: test_api
sha256: "
5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b
"
sha256: "
9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f
"
url: "https://pub.dev"
source: hosted
version: "0.
6.1
"
version: "0.
7.0
"
test_core:
dependency: transitive
description:
name: test_core
sha256:
a757b14fc47507060a162cc2530d9a4a2f92f5100a952c7443b5cad5ef5b106a
sha256:
"2bc4b4ecddd75309300d8096f781c0e3280ca1ef85beda558d33fcbedc2eead4"
url: "https://pub.dev"
source: hosted
version: "0.
5.9
"
version: "0.
6.0
"
text_scroll:
dependency: "direct main"
description:
...
...
@@ -2006,10 +2006,10 @@ packages:
dependency: transitive
description:
name: vm_service
sha256:
b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957
sha256:
"3923c89304b715fb1eb6423f017651664a03bf5f4b29983627c4da791f74a4ec"
url: "https://pub.dev"
source: hosted
version: "1
3.0.0
"
version: "1
4.2.1
"
watcher:
dependency: transitive
description:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment