Skip to content

Commit

Permalink
fix: add notice on missing texts
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgomesdev committed Sep 28, 2024
1 parent f365c35 commit 842190f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ Criada para serem lidos numa interface mais moderna e de fácil leitura no telem

<img alt="Textos guardados" src="images/saved-texts.jpg" width="200px" hspace="20"/> <img alt="Histórico" src="images/history.jpg" width="200px" hspace="20"/>

## Textos removidos

A aplicação começou por ser desenvolvida com o objetivo de eu próprio ler a poesia de Fernando Pessoa, pelo que apenas incluí as categorias que me interessavam. (os que se podem ver acima no Índice)

Dado que agora reconheço a utilidade da aplicação para fins académicos e até mesmo para outros entusiastas de Fernando Pessoa, no futuro irei colocar uma opção para ler a sua obra na íntegra.

## Developer docs (english)

### Building
Expand Down
25 changes: 18 additions & 7 deletions lib/ui/widget/no_text_reader.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,26 @@ class NoTextReader extends StatelessWidget {
Widget build(BuildContext context) {
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Container(),
Column(
children: [
Container(),
Text(
"Pessoa Pensadora",
style: bonitoTextTheme.displayMedium,
),
Text("Textos provenientes de Arquivo Pessoa (sem qualquer afiliação)", style: bonitoTextTheme.labelSmall!.copyWith(fontStyle: FontStyle.italic),)
"Pessoa Pensadora",
style: bonitoTextTheme.displayMedium,
),
Text(
"Textos provenientes de Arquivo Pessoa (sem qualquer afiliação)",
style: bonitoTextTheme.labelSmall!
.copyWith(fontStyle: FontStyle.italic)),
],
));
),
Text(
"Nota: atualmente apenas inclui parte dos textos. No futuro haverá uma opção para poder ler a sua obra na íntegra.",
style: bonitoTextTheme.labelSmall!
.copyWith(fontStyle: FontStyle.italic))
],
));
}
}

0 comments on commit 842190f

Please sign in to comment.