Skip to content

Commit

Permalink
Alterados icones dos elementos encontrados
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasew committed Jul 7, 2019
1 parent 0090066 commit 5b64bc0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions lib/view/ArquivoWidget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@ class ArquivoWidget extends StatelessWidget {
var tamanho = "${(this.arquivo.tamanho / 1000000).round()} MB";
var elemento = ListTile(
title: Row(children: <Widget>[
Icon(arquivo.isUltimo ? Icons.warning : Icons.backup),
Icon(arquivo.isUltimo ? Icons.warning : Icons.history),
Text(texto, style: TextStyle(fontSize: 36) // TextStyle
), // Text
]), // Row
subtitle: Text(tamanho, style: TextStyle(fontSize: 28) // TextStyle
) // Text
subtitle: Row(children: <Widget>[
Icon(Icons.sd_card),
Text(tamanho, style: TextStyle(fontSize: 28) // TextStyle
) // Text
]) // Row
); // ListTile
return Center(
child: Dismissible(
Expand Down

0 comments on commit 5b64bc0

Please sign in to comment.