Skip to content

Commit

Permalink
feat: release v0.2.2
Browse files Browse the repository at this point in the history
Signed-off-by: rajput-hemant <rajput.hemant2001@gmail.com>
  • Loading branch information
rajput-hemant committed Jul 3, 2023
1 parent aab3ffd commit a1f3940
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Calculator

**v0.2.1**
**v0.2.2**

### A Simple but elegant Calculator app made with Flutter using Google's Material Design with Currency (Exchange Rate) and Unit Converter.

Expand Down Expand Up @@ -87,15 +87,15 @@ This project is licensed under the GPL-3.0 License - see the [LICENSE](LICENSE)

<!------------------------------------{ apk }----------------------------------->

[universal-release]: https://github.com/rajput-hemant/calculator/releases/download/v0.2.1/Calculator-v0.2.1-universal-release.apk
[arm64]: https://github.com/rajput-hemant/calculator/releases/download/v0.2.1/Calculator-v0.2.1-arm64-v8a-release.apk
[armabi]: https://github.com/rajput-hemant/calculator/releases/download/v0.2.1/Calculator-v0.2.1-armeabi-v7a-release.apk
[x86]: https://github.com/rajput-hemant/calculator/releases/download/v0.2.1/Calculator-v0.2.1-x86_64-release.apk
[universal-release]: https://github.com/rajput-hemant/calculator/releases/download/v0.2.2/Calculator-v0.2.2-universal-release.apk
[arm64]: https://github.com/rajput-hemant/calculator/releases/download/v0.2.2/Calculator-v0.2.2-arm64-v8a-release.apk
[armabi]: https://github.com/rajput-hemant/calculator/releases/download/v0.2.2/Calculator-v0.2.2-armeabi-v7a-release.apk
[x86]: https://github.com/rajput-hemant/calculator/releases/download/v0.2.2/Calculator-v0.2.2-x86_64-release.apk

<!--------------------------------{ source code }------------------------------->

[sc-zip]: https://github.com/rajput-hemant/calculator/archive/refs/tags/v0.2.1.zip
[sc-tar.gz]: https://github.com/rajput-hemant/calculator/archive/refs/tags/v0.2.1.tar.gz
[sc-zip]: https://github.com/rajput-hemant/calculator/archive/refs/tags/v0.2.2.zip
[sc-tar.gz]: https://github.com/rajput-hemant/calculator/archive/refs/tags/v0.2.2.tar.gz

<!----------------------------------{ Labels }--------------------------------->

Expand Down
2 changes: 1 addition & 1 deletion lib/screens/about_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class AboutScreen extends ConsumerWidget {
),
),
subtitle: Center(
child: Text('v0.2.1'),
child: Text('v0.2.2'),
),
),
const Padding(
Expand Down
5 changes: 2 additions & 3 deletions lib/screens/select_unit_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ class SelectUnitScreen extends StatefulWidget {
}

class _SelectUnitScreenState extends State<SelectUnitScreen> {
late List<Unit> _filteredList;
late TextEditingController _searchController;
final TextEditingController _searchController = TextEditingController();
late List<Unit> _filteredList = widget.list;
bool _isSearching = false;

@override
void initState() {
super.initState();
_filteredList = widget.list;
_searchController = TextEditingController();
}

@override
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: calculator
description: A Simple but elegant Calculator app made with Flutter with Currency (Exchange Rate) & Unit Converter.
publish_to: "none" # to prevent accidental publication of package to pub.dev

version: 0.2.1
version: 0.2.2

environment:
sdk: ">=3.0.2 <4.0.0"
Expand Down

0 comments on commit a1f3940

Please sign in to comment.