Skip to content

Commit d0faada

Browse files
committed
we need icons
1 parent ccae3f1 commit d0faada

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,3 @@ samples, guidance on mobile development, and a full API reference.
2323
[ ] Toggle rtl and ltr view
2424
[ ] Customable primary color
2525
[*] Vibration for better UX
26-
[*] Remove all icons

lib/assets/icons/backspace.png

-650 Bytes
Binary file not shown.

lib/components/buttons/backspace.dart

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@ class ButtonBackspace extends StatelessWidget {
1111
@override
1212
Widget build(BuildContext context) {
1313
return Button(
14-
child: Image.asset(
15-
'lib/assets/icons/backspace.png',
16-
width: 18,
17-
height: 18,
14+
child: Icon(
15+
Icons.backspace_outlined,
16+
size: 18,
1817
),
1918
size: 50,
2019
onPress: () => this.onPress(),

0 commit comments

Comments
 (0)