Skip to content

Commit 6670be1

Browse files
committedJul 18, 2021
chore: Fixed some typo mistakes and fixed an issue occuring in small devices
1 parent ab39d6f commit 6670be1

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed
 

‎README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Responsive Admin Panel or Dashboard - Flutter UI
22
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
3-
[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-)
3+
[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors-)
44
<!-- ALL-CONTRIBUTORS-BADGE:END -->
55

66
## [Live Preview](https://abuanwar072.github.io/Flutter-Responsive-Admin-Panel-or-Dashboard/#/)
@@ -37,6 +37,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
3737
<tr>
3838
<td align="center"><a href="https://github.com/simon1tan"><img src="https://avatars.githubusercontent.com/u/1250858?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Simon Tan</b></sub></a><br /><a href="https://github.com/abuanwar072/Flutter-Responsive-Admin-Panel-or-Dashboard/issues?q=author%3Asimon1tan" title="Bug reports">🐛</a></td>
3939
<td align="center"><a href="https://github.com/gillescoolen"><img src="https://avatars.githubusercontent.com/u/31668393?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Gilles</b></sub></a><br /><a href="https://github.com/abuanwar072/Flutter-Responsive-Admin-Panel-or-Dashboard/issues?q=author%3Agillescoolen" title="Bug reports">🐛</a></td>
40+
<td align="center"><a href="https://github.com/RounakTadvi"><img src="https://avatars.githubusercontent.com/u/38634459?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Rounak Tadvi</b></sub></a><br /><a href="#maintenance-RounakTadvi" title="Maintenance">🚧</a> <a href="https://github.com/abuanwar072/Flutter-Responsive-Admin-Panel-or-Dashboard/commits?author=RounakTadvi" title="Code">💻</a></td>
4041
</tr>
4142
</table>
4243

‎lib/models/RecentFile.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ List demoRecentFiles = [
1919
),
2020
RecentFile(
2121
icon: "assets/icons/doc_file.svg",
22-
title: "Documetns",
22+
title: "Document",
2323
date: "23-02-2021",
2424
size: "32.5mb",
2525
),
@@ -37,7 +37,7 @@ List demoRecentFiles = [
3737
),
3838
RecentFile(
3939
icon: "assets/icons/pdf_file.svg",
40-
title: "Sals PDF",
40+
title: "Sales PDF",
4141
date: "25-02-2021",
4242
size: "3.5mb",
4343
),

‎lib/screens/dashboard/components/my_fields.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class MyFiles extends StatelessWidget {
4040
Responsive(
4141
mobile: FileInfoCardGridView(
4242
crossAxisCount: _size.width < 650 ? 2 : 4,
43-
childAspectRatio: _size.width < 650 ? 1.3 : 1,
43+
childAspectRatio: _size.width < 650 && _size.width > 350 ? 1.3 : 1,
4444
),
4545
tablet: FileInfoCardGridView(),
4646
desktop: FileInfoCardGridView(

‎lib/screens/main/components/side_menu.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class SideMenu extends StatelessWidget {
1515
child: Image.asset("assets/images/logo.png"),
1616
),
1717
DrawerListTile(
18-
title: "Dashbord",
18+
title: "Dashboard",
1919
svgSrc: "assets/icons/menu_dashbord.svg",
2020
press: () {},
2121
),

0 commit comments

Comments
 (0)