aboutsummaryrefslogtreecommitdiffstats
path: root/lib/presentation/screens/clock/clock.dart
blob: f0858e744b3124c203293a47ac2f7d0bac4090a4 (plain)
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import 'dart:async';

import 'package:flutter_ics_homescreen/export.dart';

class ClockPage extends ConsumerWidget {
  const ClockPage({super.key});

  static Page<void> page() => const MaterialPage<void>(child: ClockPage());

  @override
  Widget build(BuildContext context, WidgetRef ref) {
    double clockSize = MediaQuery.sizeOf(context).width * 0.51;

    return Column(
      crossAxisAlignment: CrossAxisAlignment.stretch,
      children: [
        CommonTitle(
          title: "Clock",
          hasBackButton: true,
          onPressed: () {
            context.flow<AppState>().update((state) => AppState.apps);
          },
        ),
        const SizedBox(
          height: 25,
        ),
        Expanded(
          child: Padding(
            padding: const EdgeInsets.symmetric(horizontal: 10),
            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,
                  ),
                  const SizedBox(
                    height: 140,
                  ),
                  Container(
                    width: clockSize,
                    height: clockSize,
                    decoration: const BoxDecoration(
                      image: DecorationImage(
                        image: AssetImage(
                          "assets/clockBackground.png",
                        ),
                      ),
                    ),
                    child: const AnalogClock(
                      dialColor: null,
                      markingColor: null,
                      hourNumberColor: null,
                      secondHandColor: AGLDemoColors.jordyBlueColor,
                      hourHandColor: AGLDemoColors.jordyBlueColor,
                      minuteHandColor: AGLDemoColors.jordyBlueColor,
                      centerPointColor: null,
                      hourHandLengthFactor: 0.6,
                      secondHandLengthFactor: 0.6,
                      secondHandWidthFactor: 1.5,
                      minuteHandLengthFactor: 0.7,
                      minuteHandWidthFactor: 2.5,
                      hourHandWidthFactor: 1.2,
                    ),
                  ),
                  const SizedBox(
                    height: 120,
                  ),
                  const RealTimeClock(),
                ],
              ),
            ),
          ),
        )
      ],
    );
  }
}

class RealTimeClock extends StatefulWidget {
  const RealTimeClock({super.key});

  @override
  State<RealTimeClock> createState() => _RealTimeClockState();
}

class _RealTimeClockState extends State<RealTimeClock> {
  late String _timeString;
  late Timer _timer;

  @override
  void initState() {
    _timeString = _formatDateTime(DateTime.now());
    _timer =
        Timer.periodic(const Duration(seconds: 1), (Timer t) => _getTime());
    super.initState();
  }

  @override
  void dispose() {
    _timer.cancel();
    super.dispose();
  }

  void _getTime() {
    final DateTime now = DateTime.now();
    final String formattedDateTime = _formatDateTime(now);
    if (mounted) {
      setState(() {
        _timeString = formattedDateTime;
      });
    }
  }

  String _formatDateTime(DateTime dateTime) {
    return "${dateTime.hour}:${dateTime.minute.toString().padLeft(2, '0')}";
  }

  @override
  Widget build(BuildContext context) {
    return Text(
      _timeString,
      style: GoogleFonts.brunoAce(color: Colors.white, fontSize: 128),
    );
  }
}