1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
import 'package:flutter_ics_homescreen/export.dart';
class WeatherPage extends ConsumerWidget {
const WeatherPage({super.key});
static Page<void> page() => const MaterialPage<void>(child: WeatherPage());
@override
Widget build(BuildContext context, WidgetRef ref) {
double weatherIconSize = MediaQuery.sizeOf(context).width * 0.278;
final unit =
ref.watch(unitStateProvider.select((unit) => unit.temperatureUnit));
return Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
CommonTitle(
title: "Weather",
hasBackButton: true,
onPressed: () {
context.flow<AppState>().update((state) => AppState.apps);
},
),
const SizedBox(
height: 25,
),
Expanded(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 144),
child: SingleChildScrollView(
child: Column(
children: [
const Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.location_on_outlined,
color: Colors.white,
size: 48,
),
SizedBox(
width: 7,
),
Text(
"Fortaleza",
style: TextStyle(
color: Colors.white,
fontSize: 40,
fontWeight: FontWeight.w500),
),
],
),
const SizedBox(
height: 80,
),
SvgPicture.asset(
"assets/weatherStat.svg",
width: weatherIconSize,
height: weatherIconSize,
),
const SizedBox(
height: 60,
),
Text(
"28.3°${unit == TemperatureUnit.celsius ? "C" : "F"}",
style: GoogleFonts.brunoAce(
color: Colors.white, fontSize: 128),
),
const Padding(
padding: EdgeInsets.all(30.0),
child: Text(
"Partially Cloudy",
style: TextStyle(color: Colors.white, fontSize: 44),
),
),
const SizedBox(
height: 5,
),
const Text(
"Max: 31° Min: 25°",
style: TextStyle(color: Colors.white, fontSize: 40),
),
const SizedBox(
height: 80,
),
const HourlyForecast()
],
),
),
),
)
],
);
}
}
|