Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #46

Merged
merged 4 commits into from
Aug 7, 2024
Merged

Dev #46

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
uses: flutter-actions/[email protected]
with:
channel: stable
version: 3.22.3
version: 3.24.0

# Note: This workflow uses the latest stable version of the Dart SDK.
# You can specify other versions if desired, see documentation here:
Expand Down
8 changes: 4 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
"args": [
// "--web-renderer",
// "canvaskit",
"--web-port",
"8081",
"--web-hostname",
"localhost"
// "--web-port",
// "8081",
// "--web-hostname",
// "localhost"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion lib/Pages/AboutMePage/Widgets/perfect_day_chart.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class PerfectDayState extends State<PerfectDay> {
chartData.add(PieChartDataEntry(entryName, valueInPercentage));
});
double currentWidth = MediaQuery.of(context).size.width;
return PieChart(
return PieChartWidget(
chartConfig: chartConfig,
title: AppLocalizations.of(context)!.myPerfectDay,
animate: currentWidth > narrowScreenWidthThreshold,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 1.3.1

environment:
sdk: ">=3.4.4 <4.0.0"
flutter: ">=3.22.3"
flutter: ">=3.24.0"

dependencies:
flutter:
Expand Down
Loading