Skip to content

Commit

Permalink
Update reade me and fix ui bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
arminhero1 committed Aug 31, 2022
1 parent 65318ac commit 028ba0d
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,18 @@

## اپ گنجور

اپ گنجور نرم افزاری اپن سورس که با استفاده از فریم ورک فلاتر و توسط تیم تکانو توسعه یافته. این اپ بر پایه API که توسط تیم گنجور پیاده سازی شده است ساخته شده است.
نرم افزار گنجور نرم افزاری متن باز، بر پایه فلاتر است که از [API](https://github.com/ganjoor/GanjoorService/) توسعه یافته توسط تیم [گنجور](https://github.com/ganjoor/GanjoorService/) استفاده میکند.

### امکانات

نمایش شعرا - جستجو در شعرا - نمایش شعر های شاعر - جستجو در شعر های شاعر - نمایش اطلاعات شاعر - تغییر سایز فونت هنگام نمایش شعر

### امکانات نسخه بعد

ورود و نام نویس کاربر - پخش صدا و هماهنگ سازی آن با شعر - سرچ -گلوبال - نمایش نظر ها - ثبت نظر

![main page](./example.png)

![peat page](./example2.png)

![poem page](./example3.png)
Binary file added example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added example2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added example3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 6 additions & 4 deletions lib/pages/poem_detail.dart
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ class _BookDetailState extends State<PoemDetail> {
const Text(
'منبع : ',
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.w700),
),
Text(
Expand All @@ -112,16 +111,19 @@ class _BookDetailState extends State<PoemDetail> {
: Container(),
_poem!.rhythm.toString() != 'null'
? Row(
crossAxisAlignment:
CrossAxisAlignment.start,
children: [
const Text(
'وزن : ',
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.w700,
),
),
Text(
_poem!.rhythm,
Expanded(
child: Text(
_poem!.rhythm,
),
),
],
)
Expand Down

0 comments on commit 028ba0d

Please sign in to comment.