Skip to content

Commit

Permalink
fix(lock_item_icon.dart): Use the correct bootstrap lock icons
Browse files Browse the repository at this point in the history
  • Loading branch information
rlperez committed Dec 6, 2021
1 parent 8f08127 commit ebea44c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/assets/traits/lock_item_icon.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'package:flutter/cupertino.dart';
import 'package:bootstrap_icons/bootstrap_icons.dart';
import 'package:flutter/material.dart';
import 'package:yonomi_device_widgets/ui/widget_style_constants.dart';

Expand All @@ -19,7 +20,7 @@ class LockIcon extends StatelessWidget {

@override
Widget build(BuildContext context) {
return Icon(_locked ? Icons.lock : Icons.lock_open,
return Icon(_locked ? BootstrapIcons.lock : BootstrapIcons.unlock,
size: _size, color: _color);
}
}

0 comments on commit ebea44c

Please sign in to comment.