fix: update ledger_bitcoin

fix: update switching button
This commit is contained in:
Czarek Nakamoto 2025-06-26 08:18:42 +02:00 committed by cyan
parent 1833c0804a
commit e1bdc1db09
3 changed files with 6 additions and 6 deletions

View file

@ -597,8 +597,8 @@ packages:
dependency: "direct main"
description:
path: "packages/ledger-bitcoin"
ref: trunk
resolved-ref: e93254f3ff3f996fb91f65a1e7ceffb9f510b4c8
ref: eab179d487cddda3f647f6608115a89662facde4
resolved-ref: eab179d487cddda3f647f6608115a89662facde4
url: "https://github.com/cake-tech/ledger-flutter-plus-plugins"
source: git
version: "0.0.3"
@ -1201,4 +1201,4 @@ packages:
version: "2.2.2"
sdks:
dart: ">=3.6.2 <4.0.0"
flutter: ">=3.27.4"
flutter: ">=3.27.0"

View file

@ -49,7 +49,7 @@ dependencies:
git:
url: https://github.com/cake-tech/ledger-flutter-plus-plugins
path: packages/ledger-bitcoin
ref: trunk
ref: eab179d487cddda3f647f6608115a89662facde4
ledger_litecoin:
git:
url: https://github.com/cake-tech/ledger-flutter-plus-plugins

View file

@ -192,8 +192,8 @@ class _URQRState extends State<URQR> {
final keys = widget.urqr.keys.toList();
selectedInt++;
setState(() {
nextLabel = keys[(selectedInt + 1) % keys.length];
selected = keys[(selectedInt + 1) % keys.length];
nextLabel = keys[(selectedInt) % keys.length];
selected = keys[(selectedInt) % keys.length];
});
}