Skip to content
Snippets Groups Projects
Commit f21f2e9b authored by vjrj's avatar vjrj
Browse files

Updating flutter and deps

parent c34baebc
No related branches found
No related tags found
No related merge requests found
......@@ -486,18 +486,27 @@ void showQrDialog({
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
QrImage(
QrImageView(
// version: QrVersions.auto,
data: publicKey,
//roundEdges: true,
// image: const AssetImage(
// 'assets/img/gbrevedot_color.png'),
size: MediaQuery.of(context).size.width * 0.5,
gapless: false,
foregroundColor:
Theme.of(context).brightness ==
// gapless: false,
/* embeddedImage: const AssetImage(
'assets/img/gbrevedot_color.png',
),
embeddedImageStyle:
const QrEmbeddedImageStyle(
size: Size(80, 80),
), */
eyeStyle: QrEyeStyle(
eyeShape: QrEyeShape.square,
color: Theme.of(context).primaryColor),
dataModuleStyle: QrDataModuleStyle(
dataModuleShape: QrDataModuleShape.square,
color: Theme.of(context).brightness ==
Brightness.dark
? Colors.white
: Colors.black,
: Colors.black),
)
])),
],
......
......@@ -101,7 +101,7 @@ class CardTerminalScreen extends StatelessWidget {
Expanded(
child: GestureDetector(
onTap: () => copyPublicKeyToClipboard(context, duniterUri),
child: QrImage(data: duniterUri),
child: QrImageView(data: duniterUri),
// size: smallScreen(context) ? 95.0 : 140.0)
))
])),
......
This diff is collapsed.
......@@ -45,7 +45,10 @@ dependencies:
# path: ../durt
git:
url: https://git.duniter.org/vjrj/durt.git
flutter_neumorphic: ^3.2.0
flutter_neumorphic:
git:
url: https://github.com/den0206/Flutter-Neumorphic.git
ref: feature/remoce_accentcolor
shared_preferences: ^2.0.18
vibration: ^1.7.6
clipboard: ^0.1.3
......@@ -59,7 +62,7 @@ dependencies:
timeago: ^3.3.0
once: ^1.5.1
pattern_lock: ^2.0.0
backdrop: ^0.8.1
backdrop: ^0.9.0
package_info_plus: ^3.0.3
share_plus: ^6.3.1
sentry_logging: ^7.4.0
......@@ -68,7 +71,7 @@ dependencies:
filesystem_picker: ^3.1.0
path: ^1.8.2
path_provider: ^2.0.14
awesome_notifications: ^0.7.4+1
awesome_notifications: ^0.7.5-dev.3
cron: ^0.5.1
barcode_scan2: ^4.2.4
jsqr: ^0.1.4
......@@ -78,7 +81,6 @@ dependencies:
easy_debounce: ^2.0.3
tutorial_coach_mark: ^1.2.8
lehttp_overrides: ^1.0.2
feedback: ^2.6.0
feedback_gitlab: ^2.2.0
connectivity_wrapper: ^1.1.3
rxdart: ^0.27.7
......@@ -89,6 +91,7 @@ dependencies:
flutter_nfc_kit: ^3.3.1
ndef: ^0.3.1
uni_links: ^0.5.1
feedback: ^2.6.0
dev_dependencies:
flutter_test:
......@@ -101,6 +104,7 @@ dev_dependencies:
# source: https://stackoverflow.com/a/75332857/8301867
dependency_overrides:
web_socket_channel: 2.2.0
intl: ^0.18.1
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
......@@ -117,6 +121,7 @@ flutter:
- assets/translations/
- assets/img/gbrevedot.svg
- assets/img/gbrevedot.png
- assets/img/gbrevedot_color.png
- assets/img/gbrevedot_alt.svg
- assets/img/gbrevedot_alt.png
- assets/.env.development
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment