Skip to content

Commit

Permalink
Update main.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
ttorii20 committed May 20, 2024
1 parent c81ebd5 commit 7fdbd92
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions flutter_secure_storage/example/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// ignore_for_file: avoid_print

import 'dart:async';
import 'dart:io';
import 'dart:math';
Expand Down Expand Up @@ -75,7 +77,7 @@ class ItemsWidgetState extends State<ItemsWidget> {
Future<void> _addNewItem() async {
final String key = _randomValue();
final String value = _randomValue();
// print("_addNewItem");
print("_addNewItem");
await FlutterSecureStorage(
iOptions: _getIOSOptions(),
aOptions: _getAndroidOptions(useBiometric: true),
Expand Down Expand Up @@ -167,7 +169,8 @@ class ItemsWidgetState extends State<ItemsWidget> {
iOptions: _getIOSOptions(),
aOptions: _getAndroidOptions(useBiometric: true),
);
// print(v);

print(v);
},
),
TextButton(
Expand Down

0 comments on commit 7fdbd92

Please sign in to comment.