aboutsummaryrefslogtreecommitdiffstats
path: root/lib/page_apps.dart
blob: 9ea6c92afd5161571e0accec09e59993212517ba (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
146
147
148
149
150
151
152
153
154
import 'dart:io';
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:jovial_svg/jovial_svg.dart';
import 'package:flutter_homescreen/layout_size_helper.dart';
import 'package:flutter_homescreen/generated/applauncher.pb.dart';

// The Applications page.
class AppsPage extends StatefulWidget {
  final Future<List<AppInfo>> Function() getApps;
  final Function(String id) startApp;

  const AppsPage({Key? key, required this.getApps, required this.startApp})
      : super(key: key);

  @override
  _AppsPageState createState() => _AppsPageState();
}

class _AppsPageState extends State<AppsPage> {
  List<AppInfo> apps = [];

  @override
  initState() {
    widget.getApps().then((val) => setState(() {
          apps = val;
        }));

    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    var sizeHelper = LayoutSizeHelper(context);
    return Container(
      decoration: BoxDecoration(
          gradient: LinearGradient(
              begin: Alignment.topRight,
              end: Alignment.bottomLeft,
              colors: [Colors.blueGrey.shade800, Colors.grey.shade900])),
      constraints: BoxConstraints.expand(),
      alignment: Alignment.center,
      child: Column(children: [
        SizedBox(height: 160.0),
        GridView.builder(
            scrollDirection: Axis.vertical,
            shrinkWrap: true,
            itemCount: apps.length,
            gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
                crossAxisCount: 3),
            itemBuilder: (context, index) {
              return GridTile(
                  child: Container(
                      alignment: Alignment.center,
                      child: _AppsPageEntry(
                        id: apps[index].id,
                        label: apps[index].name,
                        iconPath: apps[index].iconPath,
                        appSelected: widget.startApp,
                      )));
            })
      ]),
    );
  }
}

// Each one of the items on the Home page.
class _AppsPageEntry extends StatefulWidget {
  final String id;
  final String label;
  final String iconPath;
  final void Function(String id) appSelected;

  const _AppsPageEntry(
      {Key? key,
      required this.id,
      required this.label,
      required this.iconPath,
      required this.appSelected})
      : super(key: key);

  @override
  _AppsPageEntryState createState() => _AppsPageEntryState();
}

class _AppsPageEntryState extends State<_AppsPageEntry> {
  late ScalableImage svgIcon;
  bool svgIconLoaded = false;
  final iconColor = const Color(0xff4ee6f5);

  @override
  void initState() {
    if (widget.iconPath.endsWith(".svg")) {
      readSvgIcon().then((val) => setState(() {
            svgIconLoaded = val;
          }));
    }
    super.initState();
  }

  Future<bool> readSvgIcon() async {
    if (widget.iconPath.endsWith(".svg")) {
      var iconFile = File(widget.iconPath);
      if (await iconFile.exists()) {
        svgIcon = await ScalableImage.fromSvgStream(
            iconFile.openRead().transform(utf8.decoder));
        return true;
      }
    }
    return false;
  }

  Widget buildIcon() {
    if (svgIconLoaded) {
      return GestureDetector(
          onTap: () {
            widget.appSelected(widget.id);
          },
          child: SizedBox.expand(child: ScalableImageWidget(si: svgIcon)));
    } else {
      return OutlinedButton(
          style: ElevatedButton.styleFrom(
            shape: CircleBorder(),
            padding: EdgeInsets.all(8),
            side: BorderSide(width: 4, color: iconColor),
          ),
          onPressed: () {
            widget.appSelected(widget.id);
          },
          child: Icon(Icons.question_mark, color: iconColor, size: 160.0));
    }
  }

  @override
  Widget build(BuildContext context) {
    return Padding(
        padding: const EdgeInsets.symmetric(vertical: 32.0),
        child: Column(
          children: [
            Expanded(child: buildIcon()),
            Padding(
              padding: EdgeInsets.all(4),
              child: Text(
                widget.label,
                style: DefaultTextStyle.of(context).style.copyWith(
                      fontSize: 28,
                      color: iconColor,
                    ),
              ),
            ),
          ],
        ));
  }
}