packages upgrade

This commit is contained in:
Thibault Deckers 2022-01-30 10:57:23 +09:00
parent 8165a83dde
commit 3fb6012915
3 changed files with 24 additions and 24 deletions

View file

@ -118,7 +118,7 @@ class _ReportOverlayState<T> extends State<ReportOverlay<T>> with SingleTickerPr
Stream<T> get opStream => widget.opStream; Stream<T> get opStream => widget.opStream;
static const fontSize = 18.0; static const fontSize = 18.0;
static const radius = 160.0; static const diameter = 160.0;
static const strokeWidth = 8.0; static const strokeWidth = 8.0;
@override @override
@ -169,8 +169,8 @@ class _ReportOverlayState<T> extends State<ReportOverlay<T>> with SingleTickerPr
alignment: Alignment.center, alignment: Alignment.center,
children: [ children: [
Container( Container(
width: radius + 2, width: diameter + 2,
height: radius + 2, height: diameter + 2,
decoration: const BoxDecoration( decoration: const BoxDecoration(
color: Color(0xBB000000), color: Color(0xBB000000),
shape: BoxShape.circle, shape: BoxShape.circle,
@ -178,8 +178,8 @@ class _ReportOverlayState<T> extends State<ReportOverlay<T>> with SingleTickerPr
), ),
if (animate) if (animate)
Container( Container(
width: radius, width: diameter,
height: radius, height: diameter,
padding: const EdgeInsets.all(strokeWidth / 2), padding: const EdgeInsets.all(strokeWidth / 2),
child: CircularProgressIndicator( child: CircularProgressIndicator(
color: progressColor.withOpacity(.1), color: progressColor.withOpacity(.1),
@ -189,7 +189,7 @@ class _ReportOverlayState<T> extends State<ReportOverlay<T>> with SingleTickerPr
CircularPercentIndicator( CircularPercentIndicator(
percent: percent, percent: percent,
lineWidth: strokeWidth, lineWidth: strokeWidth,
radius: radius, radius: diameter / 2,
backgroundColor: Colors.white24, backgroundColor: Colors.white24,
progressColor: progressColor, progressColor: progressColor,
animation: animate, animation: animate,
@ -203,8 +203,8 @@ class _ReportOverlayState<T> extends State<ReportOverlay<T>> with SingleTickerPr
Material( Material(
color: Colors.transparent, color: Colors.transparent,
child: Container( child: Container(
width: radius, width: diameter,
height: radius, height: diameter,
margin: const EdgeInsets.only(top: fontSize), margin: const EdgeInsets.only(top: fontSize),
alignment: const FractionalOffset(0.5, 0.75), alignment: const FractionalOffset(0.5, 0.75),
child: Tooltip( child: Tooltip(

View file

@ -231,7 +231,7 @@ packages:
name: device_info_plus_platform_interface name: device_info_plus_platform_interface
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.3.0" version: "2.3.0+1"
device_info_plus_web: device_info_plus_web:
dependency: transitive dependency: transitive
description: description:
@ -305,35 +305,35 @@ packages:
name: firebase_core name: firebase_core
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.11.0" version: "1.12.0"
firebase_core_platform_interface: firebase_core_platform_interface:
dependency: transitive dependency: transitive
description: description:
name: firebase_core_platform_interface name: firebase_core_platform_interface
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "4.2.3" version: "4.2.4"
firebase_core_web: firebase_core_web:
dependency: transitive dependency: transitive
description: description:
name: firebase_core_web name: firebase_core_web
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.5.3" version: "1.5.4"
firebase_crashlytics: firebase_crashlytics:
dependency: transitive dependency: transitive
description: description:
name: firebase_crashlytics name: firebase_crashlytics
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.4.5" version: "2.5.0"
firebase_crashlytics_platform_interface: firebase_crashlytics_platform_interface:
dependency: transitive dependency: transitive
description: description:
name: firebase_crashlytics_platform_interface name: firebase_crashlytics_platform_interface
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "3.1.12" version: "3.1.13"
flex_color_picker: flex_color_picker:
dependency: "direct main" dependency: "direct main"
description: description:
@ -748,7 +748,7 @@ packages:
name: percent_indicator name: percent_indicator
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "3.4.0" version: "4.0.0"
permission_handler: permission_handler:
dependency: "direct main" dependency: "direct main"
description: description:
@ -853,28 +853,28 @@ packages:
name: screen_brightness name: screen_brightness
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.1.3" version: "0.1.4"
screen_brightness_android: screen_brightness_android:
dependency: transitive dependency: transitive
description: description:
name: screen_brightness_android name: screen_brightness_android
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.0.3" version: "0.0.4"
screen_brightness_ios: screen_brightness_ios:
dependency: transitive dependency: transitive
description: description:
name: screen_brightness_ios name: screen_brightness_ios
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.0.4" version: "0.0.5"
screen_brightness_platform_interface: screen_brightness_platform_interface:
dependency: transitive dependency: transitive
description: description:
name: screen_brightness_platform_interface name: screen_brightness_platform_interface
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.0.3" version: "0.0.4"
shared_preferences: shared_preferences:
dependency: "direct main" dependency: "direct main"
description: description:
@ -1133,14 +1133,14 @@ packages:
name: url_launcher_linux name: url_launcher_linux
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.0.2" version: "2.0.3"
url_launcher_macos: url_launcher_macos:
dependency: transitive dependency: transitive
description: description:
name: url_launcher_macos name: url_launcher_macos
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.0.2" version: "2.0.3"
url_launcher_platform_interface: url_launcher_platform_interface:
dependency: transitive dependency: transitive
description: description:
@ -1210,7 +1210,7 @@ packages:
name: win32 name: win32
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.3.3" version: "2.3.8"
wkt_parser: wkt_parser:
dependency: transitive dependency: transitive
description: description:

View file

@ -26,7 +26,7 @@ dependencies:
collection: collection:
connectivity_plus: connectivity_plus:
country_code: country_code:
# TODO TLAD as of 2021/12/01, null safe version is pre-release # TODO TLAD as of 2022/01/30, null safe version is pre-release
custom_rounded_rectangle_border: '>=0.2.0-nullsafety.0' custom_rounded_rectangle_border: '>=0.2.0-nullsafety.0'
decorated_icon: decorated_icon:
device_info_plus: device_info_plus:
@ -54,7 +54,7 @@ dependencies:
overlay_support: overlay_support:
package_info_plus: package_info_plus:
palette_generator: palette_generator:
# TODO TLAD as of 2021/12/01, latest version (v0.4.1) has this issue: https://github.com/zesage/panorama/issues/25 # TODO TLAD as of 2022/01/30, latest version (v0.4.1) has this issue: https://github.com/zesage/panorama/issues/25
panorama: 0.4.0 panorama: 0.4.0
pdf: pdf:
percent_indicator: percent_indicator: