Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Gloumy/diaporama
Flutter app to browse Reddit with swiping gestures
https://github.com/Gloumy/diaporama
Last synced: 2 months ago
JSON representation
Flutter app to browse Reddit with swiping gestures
- Host: GitHub
- URL: https://github.com/Gloumy/diaporama
- Owner: Gloumy
- Created: 2020-02-26T15:41:37.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-07T11:59:24.000Z (over 4 years ago)
- Last Synced: 2024-08-01T02:26:48.217Z (5 months ago)
- Language: Dart
- Size: 1.85 MB
- Stars: 23
- Watchers: 3
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Diaporama (for Reddit)
## A pretty simple Flutter app to browse Reddit with swiping gestures
You select your content source (list of subreddits) and you just have to swipe right/left to navigate between threads. Ain't it easy ?
### Screenshots
### Features (as of 2020-04-07)
- [x] Retrieve content from Front Page/Popular/All
- [x] Anonymous/Authenticated mode
- [x] Manage your content sources (add/remove)
- [x] Search subreddits with autocomplete
- [x] PageView display of threads
- [x] Comments display
- [x] Dark Theme (actually that's the only theme)
- [x] Implemented design (at least to me it doesn't look that ugly)
- [x] Improve the handling of different submissions types- [x] Improve comments display
- [x] Implement comment actions (votes, reply, copy content, save)
- [x] Implement thread actions (votes, reply, share, save)
- [x] Sync your multrireddits as content sources
### Next steps
- [ ] Refactor / clean up- [ ] Implement settings page
- [ ] Improve miscellaneous things and implement a lot of other things that are still missing to look like a real Reddit client !
### Contribute
Well, don't hesitate to share feedback and/or ideas !
### Running the app
You need to get an api key for the Reddit oAuth. You can get one from your Reddit settings.
Then, copy the secrets.example file and replace the redditSecret with this api key.``cp lib/utils/secrets.dart.example lib/utils/secrets.dart``
``sed -i -e "s/changeRedditSecret/$redditSecret/g" lib/utils/secrets.dart
``
There's also a secret for Sentry, but you shouldn't need that.
Once those secrets are configured, you just need to ``flutter run`` and voilà !---
Thanks to TheNightmanCodeth for his DitRA work, i've taken inspiration and copied some code for the comments part. That part got reworked, but it allowed me to not be stuck and continue the development early on.