Skip to content

Commit

Permalink
v2.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Webierta committed Aug 5, 2021
1 parent 2828f76 commit 619b0b2
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 3 deletions.
Binary file modified Screenshot_1.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 modified Screenshot_2.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 modified Screenshot_3.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 modified Screenshot_4.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 modified Screenshot_5.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 modified Screenshot_6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion lib/pages/about.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class About extends StatelessWidget {
const Head(),
const Icon(Icons.code, size: 60, color: Color(0xFF1565C0)),
Text(
'Versión 2.3.4', // VERSION
'Versión 2.3.5', // VERSION
style: Theme.of(context).textTheme.bodyText1,
),
Text(
Expand Down
8 changes: 7 additions & 1 deletion lib/pages/info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,20 @@ class Formula extends StatefulWidget {

class _FormulaState extends State<Formula> {
bool visiblePoliticos = false;

ScrollController _controller;

@override
void initState() {
super.initState();
_controller = ScrollController();
}

@override
void dispose() {
_controller.dispose();
super.dispose();
}

@override
Widget build(BuildContext context) {
return SingleChildScrollView(
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: Detailed information by hours on the price of electricity in Spain
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 2.3.4+18
version: 2.3.5+19

environment:
sdk: ">=2.6.0 <3.0.0"
Expand Down

0 comments on commit 619b0b2

Please sign in to comment.