ソースを参照

Merge branch 'master' into oniel-progreso

Oniel Mendez 3 年 前
コミット
d54dd0c704
共有7 個のファイルを変更した874 個の追加0 個の削除を含む
  1. 347
    0
      Jorge/main.dart
  2. 77
    0
      Jorge/pubspec.yaml
  3. 16
    0
      README.md
  4. 18
    0
      flutter_app7.iml
  5. 164
    0
      package_config.json
  6. 175
    0
      pubspec.lock
  7. 77
    0
      pubspec.yaml

+ 347
- 0
Jorge/main.dart ファイルの表示

@@ -0,0 +1,347 @@
1
+import 'package:flutter/material.dart';
2
+import 'package:intl/date_symbol_data_local.dart';
3
+import 'package:table_calendar/table_calendar.dart';
4
+
5
+// Dias sin Citas Disponibles
6
+final Map<DateTime, List> _holidays = {
7
+  DateTime(2020, 11, 6): ['No Hay Citas'],
8
+  DateTime(2020, 11, 3): ['Dia Elecciones'],
9
+
10
+};
11
+
12
+void main() {
13
+  initializeDateFormatting().then((_) => runApp(MyApp()));
14
+}
15
+
16
+
17
+
18
+class MyApp extends StatelessWidget {
19
+  @override
20
+  Widget build(BuildContext context) {
21
+    return MaterialApp(
22
+      title: 'Citas Disponibles',
23
+      theme: ThemeData(
24
+        primarySwatch: Colors.blue,
25
+      ),
26
+      home: MyHomePage(title: 'Citas Disponibles'),
27
+    );
28
+  }
29
+}
30
+
31
+class MyHomePage extends StatefulWidget {
32
+  MyHomePage({Key key, this.title}) : super(key: key);
33
+
34
+  final String title;
35
+
36
+  @override
37
+  _MyHomePageState createState() => _MyHomePageState();
38
+}
39
+
40
+class _MyHomePageState extends State<MyHomePage> with TickerProviderStateMixin {
41
+  Map<DateTime, List> _events;
42
+  List _selectedEvents;
43
+  AnimationController _animationController;
44
+  CalendarController _calendarController;
45
+
46
+  @override
47
+  void initState() {
48
+    super.initState();
49
+    final _selectedDay = DateTime.now();
50
+
51
+    _events = {
52
+
53
+      _selectedDay.add(Duration(days: 3)): Set.from([ 'Cita Cardiologo', 'Cita Dentista']).toList(),
54
+      _selectedDay.add(Duration(days: 22)): ['Cita Cardiologo', 'Cita Dentista'],
55
+
56
+    };
57
+
58
+    _selectedEvents = _events[_selectedDay] ?? [];
59
+    _calendarController = CalendarController();
60
+
61
+    _animationController = AnimationController(
62
+      vsync: this,
63
+      duration: const Duration(milliseconds: 400),
64
+    );
65
+
66
+    _animationController.forward();
67
+  }
68
+
69
+  @override
70
+  void dispose() {
71
+    _animationController.dispose();
72
+    _calendarController.dispose();
73
+    super.dispose();
74
+  }
75
+
76
+  void _onDaySelected(DateTime day, List events, List holidays) {
77
+    print('CALLBACK: _onDaySelected');
78
+    setState(() {
79
+      _selectedEvents = events;
80
+    });
81
+  }
82
+
83
+  void _onVisibleDaysChanged(DateTime first, DateTime last, CalendarFormat format) {
84
+    print('CALLBACK: _onVisibleDaysChanged');
85
+  }
86
+
87
+  void _onCalendarCreated(DateTime first, DateTime last, CalendarFormat format) {
88
+    print('CALLBACK: _onCalendarCreated');
89
+  }
90
+
91
+  @override
92
+  Widget build(BuildContext context) {
93
+    return Scaffold(
94
+      appBar: AppBar(
95
+        title: Text(widget.title),
96
+      ),
97
+      body: Column(
98
+        mainAxisSize: MainAxisSize.max,
99
+        children: <Widget>[
100
+          // Switch out 2 lines below to play with TableCalendar's settings
101
+          //-----------------------
102
+          _buildTableCalendar(),
103
+          // _buildTableCalendarWithBuilders(),
104
+          const SizedBox(height: 8.0),
105
+          _buildButtons(),
106
+          const SizedBox(height: 8.0),
107
+          Expanded(child: _buildEventList()),
108
+        ],
109
+      ),
110
+    );
111
+  }
112
+  //Back button
113
+  Widget BackButton(BuildContext context){
114
+    return InkWell(
115
+      onTap: (){
116
+        Navigator.pop(context);
117
+      },
118
+      child: Row(
119
+          children: <Widget>[
120
+            Container(
121
+              padding: EdgeInsets.only(left: 0, top:10, bottom: 10),
122
+              child: Icon(Icons.arrow_back_ios, color: Colors.black),
123
+            ),
124
+            Text("Black",
125
+                style: TextStyle(fontSize: 12, fontWeight: FontWeight.w500))
126
+          ]
127
+      ),
128
+    );
129
+  }
130
+
131
+  // Simple TableCalendar configuration (using Styles)
132
+  Widget _buildTableCalendar() {
133
+    return TableCalendar(
134
+      calendarController: _calendarController,
135
+      events: _events,
136
+      holidays: _holidays,
137
+      startingDayOfWeek: StartingDayOfWeek.monday,
138
+      calendarStyle: CalendarStyle(
139
+        selectedColor: Colors.lightBlueAccent,
140
+        todayColor: Colors.blueAccent,
141
+        markersColor: Colors.brown,
142
+        outsideDaysVisible: false,
143
+      ),
144
+      headerStyle: HeaderStyle(
145
+        formatButtonTextStyle: TextStyle().copyWith(color: Colors.white, fontSize: 15.0),
146
+        formatButtonDecoration: BoxDecoration(
147
+          color: Colors.lightBlue,
148
+          borderRadius: BorderRadius.circular(16.0),
149
+        ),
150
+      ),
151
+      onDaySelected: _onDaySelected,
152
+      onVisibleDaysChanged: _onVisibleDaysChanged,
153
+      onCalendarCreated: _onCalendarCreated,
154
+    );
155
+  }
156
+
157
+  // More advanced TableCalendar configuration (using Builders & Styles)
158
+  Widget _buildTableCalendarWithBuilders() {
159
+    return TableCalendar(
160
+      locale: 'pl_PL',
161
+      calendarController: _calendarController,
162
+      events: _events,
163
+      holidays: _holidays,
164
+      initialCalendarFormat: CalendarFormat.month,
165
+      formatAnimation: FormatAnimation.slide,
166
+      startingDayOfWeek: StartingDayOfWeek.sunday,
167
+      availableGestures: AvailableGestures.all,
168
+      availableCalendarFormats: const {
169
+        CalendarFormat.month: '',
170
+        CalendarFormat.week: '',
171
+      },
172
+      calendarStyle: CalendarStyle(
173
+        outsideDaysVisible: false,
174
+        weekendStyle: TextStyle().copyWith(color: Colors.blue),
175
+        holidayStyle: TextStyle().copyWith(color: Colors.blue),
176
+      ),
177
+      daysOfWeekStyle: DaysOfWeekStyle(
178
+        weekendStyle: TextStyle().copyWith(color: Colors.blue),
179
+      ),
180
+      headerStyle: HeaderStyle(
181
+        centerHeaderTitle: true,
182
+        formatButtonVisible: false,
183
+      ),
184
+      builders: CalendarBuilders(
185
+        selectedDayBuilder: (context, date, _) {
186
+          return FadeTransition(
187
+            opacity: Tween(begin: 0.0, end: 1.0).animate(_animationController),
188
+            child: Container(
189
+              margin: const EdgeInsets.all(4.0),
190
+              padding: const EdgeInsets.only(top: 5.0, left: 6.0),
191
+              color: Colors.green,
192
+              width: 100,
193
+              height: 100,
194
+              child: Text(
195
+                '${date.day}',
196
+                style: TextStyle().copyWith(fontSize: 16.0),
197
+              ),
198
+            ),
199
+          );
200
+        },
201
+        todayDayBuilder: (context, date, _) {
202
+          return Container(
203
+            margin: const EdgeInsets.all(4.0),
204
+            padding: const EdgeInsets.only(top: 5.0, left: 6.0),
205
+            color: Colors.amber,
206
+            width: 100,
207
+            height: 100,
208
+            child: Text(
209
+              '${date.day}',
210
+              style: TextStyle().copyWith(fontSize: 16.0),
211
+            ),
212
+          );
213
+        },
214
+        markersBuilder: (context, date, events, holidays) {
215
+          final children = <Widget>[];
216
+
217
+          if (events.isNotEmpty) {
218
+            children.add(
219
+              Positioned(
220
+                right: 1,
221
+                bottom: 1,
222
+                child: _buildEventsMarker(date, events),
223
+              ),
224
+            );
225
+          }
226
+
227
+          if (holidays.isNotEmpty) {
228
+            children.add(
229
+              Positioned(
230
+                right: -2,
231
+                top: -2,
232
+                child: _buildHolidaysMarker(),
233
+              ),
234
+            );
235
+          }
236
+
237
+          return children;
238
+        },
239
+      ),
240
+      onDaySelected: (date, events, holidays) {
241
+        _onDaySelected(date, events, holidays);
242
+        _animationController.forward(from: 0.0);
243
+      },
244
+      onVisibleDaysChanged: _onVisibleDaysChanged,
245
+      onCalendarCreated: _onCalendarCreated,
246
+    );
247
+  }
248
+
249
+  Widget _buildEventsMarker(DateTime date, List events) {
250
+    return AnimatedContainer(
251
+      duration: const Duration(milliseconds: 300),
252
+      decoration: BoxDecoration(
253
+        shape: BoxShape.rectangle,
254
+        color: _calendarController.isSelected(date)
255
+            ? Colors.brown[500]
256
+            : _calendarController.isToday(date) ? Colors.brown : Colors.blue,
257
+      ),
258
+      width: 16.0,
259
+      height: 16.0,
260
+      child: Center(
261
+        child: Text(
262
+          '${events.length}',
263
+          style: TextStyle().copyWith(
264
+            color: Colors.green,
265
+            fontSize: 12.0,
266
+          ),
267
+        ),
268
+      ),
269
+    );
270
+  }
271
+
272
+  Widget _buildHolidaysMarker() {
273
+    return Icon(
274
+      Icons.add_box,
275
+      size: 20.0,
276
+      color: Colors.blueGrey,
277
+    );
278
+  }
279
+
280
+  Widget _buildButtons() {
281
+    final dateTime = _events.keys.elementAt(_events.length - 2);
282
+
283
+    return Column(
284
+      children: <Widget>[
285
+        Row(
286
+          mainAxisSize: MainAxisSize.max,
287
+          mainAxisAlignment: MainAxisAlignment.spaceEvenly,
288
+          children: <Widget>[
289
+            RaisedButton(
290
+              child: Text('Mes'),
291
+              onPressed: () {
292
+                setState(() {
293
+                  _calendarController.setCalendarFormat(CalendarFormat.month);
294
+                });
295
+              },
296
+            ),
297
+            RaisedButton(
298
+              child: Text('2 Semanas'),
299
+              onPressed: () {
300
+                setState(() {
301
+                  _calendarController.setCalendarFormat(CalendarFormat.twoWeeks);
302
+                });
303
+              },
304
+            ),
305
+            RaisedButton(
306
+              child: Text('Semana'),
307
+              onPressed: () {
308
+                setState(() {
309
+                  _calendarController.setCalendarFormat(CalendarFormat.week);
310
+                });
311
+              },
312
+            ),
313
+          ],
314
+        ),
315
+        const SizedBox(height: 8.0),
316
+        RaisedButton(
317
+          child: Text('Recuerde Cita ${dateTime.day}-${dateTime.month}-${dateTime.year}'),
318
+          onPressed: () {
319
+            _calendarController.setSelectedDay(
320
+              DateTime(dateTime.year, dateTime.month, dateTime.day),
321
+              runCallback: true,
322
+            );
323
+          },
324
+        ),
325
+      ],
326
+    );
327
+  }
328
+
329
+
330
+  Widget _buildEventList() {
331
+    return ListView(
332
+      children: _selectedEvents
333
+          .map((event) => Container(
334
+        decoration: BoxDecoration(
335
+          border: Border.all(width: 0.8),
336
+          borderRadius: BorderRadius.circular(12.0),
337
+        ),
338
+        margin: const EdgeInsets.symmetric(horizontal: 8.0, vertical: 4.0),
339
+        child: ListTile(
340
+          title: Text(event.toString()),
341
+          onTap: () => print('$event tapped!'),
342
+        ),
343
+      ))
344
+          .toList(),
345
+    );
346
+  }
347
+}

+ 77
- 0
Jorge/pubspec.yaml ファイルの表示

@@ -0,0 +1,77 @@
1
+name: flutter_app7
2
+description: A new Flutter application.
3
+
4
+# The following line prevents the package from being accidentally published to
5
+# pub.dev using `pub publish`. This is preferred for private packages.
6
+publish_to: 'none' # Remove this line if you wish to publish to pub.dev
7
+
8
+# The following defines the version and build number for your application.
9
+# A version number is three numbers separated by dots, like 1.2.43
10
+# followed by an optional build number separated by a +.
11
+# Both the version and the builder number may be overridden in flutter
12
+# build by specifying --build-name and --build-number, respectively.
13
+# In Android, build-name is used as versionName while build-number used as versionCode.
14
+# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
15
+# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
16
+# Read more about iOS versioning at
17
+# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18
+version: 1.0.0+1
19
+
20
+environment:
21
+  sdk: ">=2.7.0 <3.0.0"
22
+
23
+dependencies:
24
+  flutter:
25
+    sdk: flutter
26
+
27
+
28
+  # The following adds the Cupertino Icons font to your application.
29
+  # Use with the CupertinoIcons class for iOS style icons.
30
+  cupertino_icons: ^1.0.0
31
+  table_calendar: ^2,0,1
32
+
33
+dev_dependencies:
34
+  flutter_test:
35
+    sdk: flutter
36
+
37
+# For information on the generic Dart part of this file, see the
38
+# following page: https://dart.dev/tools/pub/pubspec
39
+
40
+# The following section is specific to Flutter.
41
+flutter:
42
+
43
+  # The following line ensures that the Material Icons font is
44
+  # included with your application, so that you can use the icons in
45
+  # the material Icons class.
46
+  uses-material-design: true
47
+
48
+  # To add assets to your application, add an assets section, like this:
49
+  # assets:
50
+  #   - images/a_dot_burr.jpeg
51
+  #   - images/a_dot_ham.jpeg
52
+
53
+  # An image asset can refer to one or more resolution-specific "variants", see
54
+  # https://flutter.dev/assets-and-images/#resolution-aware.
55
+
56
+  # For details regarding adding assets from package dependencies, see
57
+  # https://flutter.dev/assets-and-images/#from-packages
58
+
59
+  # To add custom fonts to your application, add a fonts section here,
60
+  # in this "flutter" section. Each entry in this list should have a
61
+  # "family" key with the font family name, and a "fonts" key with a
62
+  # list giving the asset and other descriptors for the font. For
63
+  # example:
64
+  # fonts:
65
+  #   - family: Schyler
66
+  #     fonts:
67
+  #       - asset: fonts/Schyler-Regular.ttf
68
+  #       - asset: fonts/Schyler-Italic.ttf
69
+  #         style: italic
70
+  #   - family: Trajan Pro
71
+  #     fonts:
72
+  #       - asset: fonts/TrajanPro.ttf
73
+  #       - asset: fonts/TrajanPro_Bold.ttf
74
+  #         weight: 700
75
+  #
76
+  # For details regarding fonts from package dependencies,
77
+  # see https://flutter.dev/custom-fonts/#from-packages

+ 16
- 0
README.md ファイルの表示

@@ -0,0 +1,16 @@
1
+# flutter_app7
2
+
3
+A new Flutter application.
4
+
5
+## Getting Started
6
+
7
+This project is a starting point for a Flutter application.
8
+
9
+A few resources to get you started if this is your first Flutter project:
10
+
11
+- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
12
+- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
13
+
14
+For help getting started with Flutter, view our
15
+[online documentation](https://flutter.dev/docs), which offers tutorials,
16
+samples, guidance on mobile development, and a full API reference.

+ 18
- 0
flutter_app7.iml ファイルの表示

@@ -0,0 +1,18 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<module type="JAVA_MODULE" version="4">
3
+  <component name="NewModuleRootManager" inherit-compiler-output="true">
4
+    <exclude-output />
5
+    <content url="file://$MODULE_DIR$">
6
+      <sourceFolder url="file://$MODULE_DIR$/lib" isTestSource="false" />
7
+      <sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
8
+      <excludeFolder url="file://$MODULE_DIR$/.dart_tool" />
9
+      <excludeFolder url="file://$MODULE_DIR$/.idea" />
10
+      <excludeFolder url="file://$MODULE_DIR$/.pub" />
11
+      <excludeFolder url="file://$MODULE_DIR$/build" />
12
+    </content>
13
+    <orderEntry type="sourceFolder" forTests="false" />
14
+    <orderEntry type="library" name="Dart SDK" level="project" />
15
+    <orderEntry type="library" name="Flutter Plugins" level="project" />
16
+    <orderEntry type="library" name="Dart Packages" level="project" />
17
+  </component>
18
+</module>

+ 164
- 0
package_config.json ファイルの表示

@@ -0,0 +1,164 @@
1
+{
2
+  "configVersion": 2,
3
+  "packages": [
4
+    {
5
+      "name": "async",
6
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.5.0-nullsafety.1",
7
+      "packageUri": "lib/",
8
+      "languageVersion": "2.10"
9
+    },
10
+    {
11
+      "name": "boolean_selector",
12
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-2.1.0-nullsafety.1",
13
+      "packageUri": "lib/",
14
+      "languageVersion": "2.10"
15
+    },
16
+    {
17
+      "name": "characters",
18
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/characters-1.1.0-nullsafety.3",
19
+      "packageUri": "lib/",
20
+      "languageVersion": "2.10"
21
+    },
22
+    {
23
+      "name": "charcode",
24
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.2.0-nullsafety.1",
25
+      "packageUri": "lib/",
26
+      "languageVersion": "2.10"
27
+    },
28
+    {
29
+      "name": "clock",
30
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/clock-1.1.0-nullsafety.1",
31
+      "packageUri": "lib/",
32
+      "languageVersion": "2.10"
33
+    },
34
+    {
35
+      "name": "collection",
36
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.15.0-nullsafety.3",
37
+      "packageUri": "lib/",
38
+      "languageVersion": "2.10"
39
+    },
40
+    {
41
+      "name": "cupertino_icons",
42
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/cupertino_icons-1.0.0",
43
+      "packageUri": "lib/",
44
+      "languageVersion": "2.0"
45
+    },
46
+    {
47
+      "name": "fake_async",
48
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/fake_async-1.2.0-nullsafety.1",
49
+      "packageUri": "lib/",
50
+      "languageVersion": "2.10"
51
+    },
52
+    {
53
+      "name": "flutter",
54
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/packages/flutter",
55
+      "packageUri": "lib/",
56
+      "languageVersion": "2.10"
57
+    },
58
+    {
59
+      "name": "flutter_test",
60
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/packages/flutter_test",
61
+      "packageUri": "lib/",
62
+      "languageVersion": "2.2"
63
+    },
64
+    {
65
+      "name": "intl",
66
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/intl-0.16.1",
67
+      "packageUri": "lib/",
68
+      "languageVersion": "2.5"
69
+    },
70
+    {
71
+      "name": "matcher",
72
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/matcher-0.12.10-nullsafety.1",
73
+      "packageUri": "lib/",
74
+      "languageVersion": "2.10"
75
+    },
76
+    {
77
+      "name": "meta",
78
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.3.0-nullsafety.3",
79
+      "packageUri": "lib/",
80
+      "languageVersion": "2.10"
81
+    },
82
+    {
83
+      "name": "path",
84
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.8.0-nullsafety.1",
85
+      "packageUri": "lib/",
86
+      "languageVersion": "2.10"
87
+    },
88
+    {
89
+      "name": "simple_gesture_detector",
90
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/simple_gesture_detector-0.1.4",
91
+      "packageUri": "lib/",
92
+      "languageVersion": "2.1"
93
+    },
94
+    {
95
+      "name": "sky_engine",
96
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/bin/cache/pkg/sky_engine",
97
+      "packageUri": "lib/",
98
+      "languageVersion": "1.11"
99
+    },
100
+    {
101
+      "name": "source_span",
102
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/source_span-1.8.0-nullsafety.2",
103
+      "packageUri": "lib/",
104
+      "languageVersion": "2.10"
105
+    },
106
+    {
107
+      "name": "stack_trace",
108
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/stack_trace-1.10.0-nullsafety.1",
109
+      "packageUri": "lib/",
110
+      "languageVersion": "2.10"
111
+    },
112
+    {
113
+      "name": "stream_channel",
114
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/stream_channel-2.1.0-nullsafety.1",
115
+      "packageUri": "lib/",
116
+      "languageVersion": "2.10"
117
+    },
118
+    {
119
+      "name": "string_scanner",
120
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.1.0-nullsafety.1",
121
+      "packageUri": "lib/",
122
+      "languageVersion": "2.10"
123
+    },
124
+    {
125
+      "name": "table_calendar",
126
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/table_calendar-2.3.0",
127
+      "packageUri": "lib/",
128
+      "languageVersion": "2.7"
129
+    },
130
+    {
131
+      "name": "term_glyph",
132
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.2.0-nullsafety.1",
133
+      "packageUri": "lib/",
134
+      "languageVersion": "2.10"
135
+    },
136
+    {
137
+      "name": "test_api",
138
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.2.19-nullsafety.2",
139
+      "packageUri": "lib/",
140
+      "languageVersion": "2.10"
141
+    },
142
+    {
143
+      "name": "typed_data",
144
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.3.0-nullsafety.3",
145
+      "packageUri": "lib/",
146
+      "languageVersion": "2.10"
147
+    },
148
+    {
149
+      "name": "vector_math",
150
+      "rootUri": "file:///C:/Users/Q524U/Downloads/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.1.0-nullsafety.3",
151
+      "packageUri": "lib/",
152
+      "languageVersion": "2.10"
153
+    },
154
+    {
155
+      "name": "flutter_app7",
156
+      "rootUri": "../",
157
+      "packageUri": "lib/",
158
+      "languageVersion": "2.7"
159
+    }
160
+  ],
161
+  "generated": "2020-11-05T14:27:55.447604Z",
162
+  "generator": "pub",
163
+  "generatorVersion": "2.10.3"
164
+}

+ 175
- 0
pubspec.lock ファイルの表示

@@ -0,0 +1,175 @@
1
+# Generated by pub
2
+# See https://dart.dev/tools/pub/glossary#lockfile
3
+packages:
4
+  async:
5
+    dependency: transitive
6
+    description:
7
+      name: async
8
+      url: "https://pub.dartlang.org"
9
+    source: hosted
10
+    version: "2.5.0-nullsafety.1"
11
+  boolean_selector:
12
+    dependency: transitive
13
+    description:
14
+      name: boolean_selector
15
+      url: "https://pub.dartlang.org"
16
+    source: hosted
17
+    version: "2.1.0-nullsafety.1"
18
+  characters:
19
+    dependency: transitive
20
+    description:
21
+      name: characters
22
+      url: "https://pub.dartlang.org"
23
+    source: hosted
24
+    version: "1.1.0-nullsafety.3"
25
+  charcode:
26
+    dependency: transitive
27
+    description:
28
+      name: charcode
29
+      url: "https://pub.dartlang.org"
30
+    source: hosted
31
+    version: "1.2.0-nullsafety.1"
32
+  clock:
33
+    dependency: transitive
34
+    description:
35
+      name: clock
36
+      url: "https://pub.dartlang.org"
37
+    source: hosted
38
+    version: "1.1.0-nullsafety.1"
39
+  collection:
40
+    dependency: transitive
41
+    description:
42
+      name: collection
43
+      url: "https://pub.dartlang.org"
44
+    source: hosted
45
+    version: "1.15.0-nullsafety.3"
46
+  cupertino_icons:
47
+    dependency: "direct main"
48
+    description:
49
+      name: cupertino_icons
50
+      url: "https://pub.dartlang.org"
51
+    source: hosted
52
+    version: "1.0.0"
53
+  fake_async:
54
+    dependency: transitive
55
+    description:
56
+      name: fake_async
57
+      url: "https://pub.dartlang.org"
58
+    source: hosted
59
+    version: "1.2.0-nullsafety.1"
60
+  flutter:
61
+    dependency: "direct main"
62
+    description: flutter
63
+    source: sdk
64
+    version: "0.0.0"
65
+  flutter_test:
66
+    dependency: "direct dev"
67
+    description: flutter
68
+    source: sdk
69
+    version: "0.0.0"
70
+  intl:
71
+    dependency: transitive
72
+    description:
73
+      name: intl
74
+      url: "https://pub.dartlang.org"
75
+    source: hosted
76
+    version: "0.16.1"
77
+  matcher:
78
+    dependency: transitive
79
+    description:
80
+      name: matcher
81
+      url: "https://pub.dartlang.org"
82
+    source: hosted
83
+    version: "0.12.10-nullsafety.1"
84
+  meta:
85
+    dependency: transitive
86
+    description:
87
+      name: meta
88
+      url: "https://pub.dartlang.org"
89
+    source: hosted
90
+    version: "1.3.0-nullsafety.3"
91
+  path:
92
+    dependency: transitive
93
+    description:
94
+      name: path
95
+      url: "https://pub.dartlang.org"
96
+    source: hosted
97
+    version: "1.8.0-nullsafety.1"
98
+  simple_gesture_detector:
99
+    dependency: transitive
100
+    description:
101
+      name: simple_gesture_detector
102
+      url: "https://pub.dartlang.org"
103
+    source: hosted
104
+    version: "0.1.4"
105
+  sky_engine:
106
+    dependency: transitive
107
+    description: flutter
108
+    source: sdk
109
+    version: "0.0.99"
110
+  source_span:
111
+    dependency: transitive
112
+    description:
113
+      name: source_span
114
+      url: "https://pub.dartlang.org"
115
+    source: hosted
116
+    version: "1.8.0-nullsafety.2"
117
+  stack_trace:
118
+    dependency: transitive
119
+    description:
120
+      name: stack_trace
121
+      url: "https://pub.dartlang.org"
122
+    source: hosted
123
+    version: "1.10.0-nullsafety.1"
124
+  stream_channel:
125
+    dependency: transitive
126
+    description:
127
+      name: stream_channel
128
+      url: "https://pub.dartlang.org"
129
+    source: hosted
130
+    version: "2.1.0-nullsafety.1"
131
+  string_scanner:
132
+    dependency: transitive
133
+    description:
134
+      name: string_scanner
135
+      url: "https://pub.dartlang.org"
136
+    source: hosted
137
+    version: "1.1.0-nullsafety.1"
138
+  table_calendar:
139
+    dependency: "direct main"
140
+    description:
141
+      name: table_calendar
142
+      url: "https://pub.dartlang.org"
143
+    source: hosted
144
+    version: "2.3.0"
145
+  term_glyph:
146
+    dependency: transitive
147
+    description:
148
+      name: term_glyph
149
+      url: "https://pub.dartlang.org"
150
+    source: hosted
151
+    version: "1.2.0-nullsafety.1"
152
+  test_api:
153
+    dependency: transitive
154
+    description:
155
+      name: test_api
156
+      url: "https://pub.dartlang.org"
157
+    source: hosted
158
+    version: "0.2.19-nullsafety.2"
159
+  typed_data:
160
+    dependency: transitive
161
+    description:
162
+      name: typed_data
163
+      url: "https://pub.dartlang.org"
164
+    source: hosted
165
+    version: "1.3.0-nullsafety.3"
166
+  vector_math:
167
+    dependency: transitive
168
+    description:
169
+      name: vector_math
170
+      url: "https://pub.dartlang.org"
171
+    source: hosted
172
+    version: "2.1.0-nullsafety.3"
173
+sdks:
174
+  dart: ">=2.10.0-110 <2.11.0"
175
+  flutter: ">=1.17.0 <2.0.0"

+ 77
- 0
pubspec.yaml ファイルの表示

@@ -0,0 +1,77 @@
1
+name: flutter_app7
2
+description: A new Flutter application.
3
+
4
+# The following line prevents the package from being accidentally published to
5
+# pub.dev using `pub publish`. This is preferred for private packages.
6
+publish_to: 'none' # Remove this line if you wish to publish to pub.dev
7
+
8
+# The following defines the version and build number for your application.
9
+# A version number is three numbers separated by dots, like 1.2.43
10
+# followed by an optional build number separated by a +.
11
+# Both the version and the builder number may be overridden in flutter
12
+# build by specifying --build-name and --build-number, respectively.
13
+# In Android, build-name is used as versionName while build-number used as versionCode.
14
+# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
15
+# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
16
+# Read more about iOS versioning at
17
+# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18
+version: 1.0.0+1
19
+
20
+environment:
21
+  sdk: ">=2.7.0 <3.0.0"
22
+
23
+dependencies:
24
+  flutter:
25
+    sdk: flutter
26
+
27
+
28
+  # The following adds the Cupertino Icons font to your application.
29
+  # Use with the CupertinoIcons class for iOS style icons.
30
+  cupertino_icons: ^1.0.0
31
+  table_calendar: ^2,0,1
32
+
33
+dev_dependencies:
34
+  flutter_test:
35
+    sdk: flutter
36
+
37
+# For information on the generic Dart part of this file, see the
38
+# following page: https://dart.dev/tools/pub/pubspec
39
+
40
+# The following section is specific to Flutter.
41
+flutter:
42
+
43
+  # The following line ensures that the Material Icons font is
44
+  # included with your application, so that you can use the icons in
45
+  # the material Icons class.
46
+  uses-material-design: true
47
+
48
+  # To add assets to your application, add an assets section, like this:
49
+  # assets:
50
+  #   - images/a_dot_burr.jpeg
51
+  #   - images/a_dot_ham.jpeg
52
+
53
+  # An image asset can refer to one or more resolution-specific "variants", see
54
+  # https://flutter.dev/assets-and-images/#resolution-aware.
55
+
56
+  # For details regarding adding assets from package dependencies, see
57
+  # https://flutter.dev/assets-and-images/#from-packages
58
+
59
+  # To add custom fonts to your application, add a fonts section here,
60
+  # in this "flutter" section. Each entry in this list should have a
61
+  # "family" key with the font family name, and a "fonts" key with a
62
+  # list giving the asset and other descriptors for the font. For
63
+  # example:
64
+  # fonts:
65
+  #   - family: Schyler
66
+  #     fonts:
67
+  #       - asset: fonts/Schyler-Regular.ttf
68
+  #       - asset: fonts/Schyler-Italic.ttf
69
+  #         style: italic
70
+  #   - family: Trajan Pro
71
+  #     fonts:
72
+  #       - asset: fonts/TrajanPro.ttf
73
+  #       - asset: fonts/TrajanPro_Bold.ttf
74
+  #         weight: 700
75
+  #
76
+  # For details regarding fonts from package dependencies,
77
+  # see https://flutter.dev/custom-fonts/#from-packages