Modif pour lancer sous android

pull/1/head
Enzo 2 years ago
parent 3e89a2d3fd
commit 8533c7d503

@ -24,6 +24,7 @@ if (flutterVersionName == null) {
android { android {
namespace "com.example.smartfit_app_mobile" namespace "com.example.smartfit_app_mobile"
//compileSdkVersion localProperties.getProperty('flutter.compileSdkVersion').toInteger()
compileSdkVersion flutter.compileSdkVersion compileSdkVersion flutter.compileSdkVersion
ndkVersion flutter.ndkVersion ndkVersion flutter.ndkVersion
@ -45,8 +46,11 @@ android {
applicationId "com.example.smartfit_app_mobile" applicationId "com.example.smartfit_app_mobile"
// You can update the following values to match your application needs. // You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion flutter.minSdkVersion //minSdkVersion flutter.minSdkVersion
minSdkVersion localProperties.getProperty('flutter.minSdkVersion').toInteger()
//minSdkVersion localProperties.getProperty('flutter.minSdkVersion').toInteger()
targetSdkVersion flutter.targetSdkVersion targetSdkVersion flutter.targetSdkVersion
//argetSdkVersion localProperties.getProperty('flutter.targetSdkVersion').toInteger()
versionCode flutterVersionCode.toInteger() versionCode flutterVersionCode.toInteger()
versionName flutterVersionName versionName flutterVersionName
} }

@ -1,5 +1,5 @@
buildscript { buildscript {
ext.kotlin_version = '1.7.10' ext.kotlin_version = '1.9.0'
repositories { repositories {
google() google()
mavenCentral() mavenCentral()

@ -1,4 +1,4 @@
import 'package:dotted_dashed_line/dotted_dashed_line.dart'; import 'package:dotted_dashed_line/dotted_dashed_line.dart';
import 'package:smartfit_app_mobile/common_widget/round_button.dart'; import 'package:smartfit_app_mobile/common_widget/round_button.dart';
import 'package:fl_chart/fl_chart.dart'; import 'package:fl_chart/fl_chart.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
@ -43,9 +43,9 @@ class _HomeViewState extends State<HomeView> {
"progress": 0.7 "progress": 0.7
}, },
]; ];
List<int> showingTooltipOnSpots = [21]; List<int> showingTooltipOnSpots = [0];
List<FlSpot> allSpots = [FlSpot(0, 20)]; List<FlSpot> allSpots = [FlSpot(0, 20)];
List waterArr = [ List waterArr = [
{"title": "6am - 8am", "subtitle": "600ml"}, {"title": "6am - 8am", "subtitle": "600ml"},
@ -74,7 +74,7 @@ class _HomeViewState extends State<HomeView> {
), ),
dotData: FlDotData(show: false), dotData: FlDotData(show: false),
gradient: LinearGradient( gradient: LinearGradient(
colors: TColor.secondaryG , colors: TColor.secondaryG,
), ),
), ),
]; ];
@ -296,7 +296,8 @@ class _HomeViewState extends State<HomeView> {
child: Text( child: Text(
"78 BPM", "78 BPM",
style: TextStyle( style: TextStyle(
color: TColor.primaryColor1.withOpacity(0.7), color:
TColor.primaryColor1.withOpacity(0.7),
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
fontSize: 18), fontSize: 18),
), ),
@ -871,7 +872,6 @@ class _HomeViewState extends State<HomeView> {
SizedBox( SizedBox(
height: media.width * 0.05, height: media.width * 0.05,
), ),
SizedBox( SizedBox(
height: media.width * 0.1, height: media.width * 0.1,
), ),
@ -889,7 +889,6 @@ class _HomeViewState extends State<HomeView> {
}); });
} }
List<PieChartSectionData> showingSections() { List<PieChartSectionData> showingSections() {
return List.generate( return List.generate(
2, 2,
@ -1038,28 +1037,28 @@ class _HomeViewState extends State<HomeView> {
Widget text; Widget text;
switch (value.toInt()) { switch (value.toInt()) {
case 1: case 1:
text = Text('Dim', style: style); text = Text('Dim', style: style);
break; break;
case 2: case 2:
text = Text('Lun', style: style); text = Text('Lun', style: style);
break; break;
case 3: case 3:
text = Text('Mar', style: style); text = Text('Mar', style: style);
break; break;
case 4: case 4:
text = Text('Mer', style: style); text = Text('Mer', style: style);
break; break;
case 5: case 5:
text = Text('Jeu', style: style); text = Text('Jeu', style: style);
break; break;
case 6: case 6:
text = Text('Ven', style: style); text = Text('Ven', style: style);
break; break;
case 7: case 7:
text = Text('Sam', style: style); text = Text('Sam', style: style);
break; break;
default: default:
text = Text('', style: style); text = Text('', style: style);
break; break;
} }

Loading…
Cancel
Save