Skip to content

Commit

Permalink
fix: add credit to Arquivo Pessoa
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgomesdev committed Sep 28, 2024
1 parent a5299c5 commit f365c35
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# PessoaPensadora
# Pessoa Pensadora

Uma aplicação para ler os textos de [Fernando Pessoa](https://pt.wikipedia.org/wiki/Fernando_Pessoa), provenientes de [Arquivo Pessoa](http://arquivopessoa.net/).

Criada para serem lidos numa interface mais moderna e de fácil leitura no telemóvel.

> **Nota**: esta aplicação não tem qualquer afiliação ao website [Arquivo Pessoa](http://arquivopessoa.net/info/ficha), exceto a extração dos textos do mesmo.
> **Nota**: esta aplicação não possui qualquer afiliação ao website [Arquivo Pessoa](http://arquivopessoa.net/info/ficha), exceto a extração dos textos do mesmo.
## Imagens

Expand Down
2 changes: 1 addition & 1 deletion lib/ui/screen/boot_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ class _BootScreenState extends State<BootScreen> {
final assetBundle = DefaultAssetBundle.of(context);

Get.put(await TextStoreService.initialize(assetBundle), permanent: true);
Get.put(SelectionActionService(), permanent: true);

Get.put(await SaveRepository.initialize(), permanent: true);
Get.put(await ReadRepository.initialize(), permanent: true);
Get.put(await HistoryRepository.initialize(), permanent: true);
Get.put(await CollapsableRepository.initialize(), permanent: true);
Get.put(SelectionActionService(), permanent: true);

Get.offAndToNamed(Routes.homeScreen);

Expand Down
15 changes: 11 additions & 4 deletions lib/ui/widget/no_text_reader.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,16 @@ class NoTextReader extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: Text(
"Pessoa Pensadora",
style: bonitoTextTheme.displayMedium,
));
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
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),)
],
));
}
}

0 comments on commit f365c35

Please sign in to comment.