mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 09:08:40 +00:00
flutter analyzer issues
This commit is contained in:
parent
f879ae00f1
commit
b584974491
3 changed files with 14 additions and 15 deletions
|
|
@ -221,7 +221,8 @@ class _UserListItem extends State<GroupListItem> {
|
||||||
: Row(
|
: Row(
|
||||||
children: [
|
children: [
|
||||||
LastMessageTime(
|
LastMessageTime(
|
||||||
dateTime: widget.group.lastMessageExchange),
|
dateTime: widget.group.lastMessageExchange,
|
||||||
|
),
|
||||||
FlameCounterWidget(
|
FlameCounterWidget(
|
||||||
groupId: widget.group.groupId,
|
groupId: widget.group.groupId,
|
||||||
prefix: true,
|
prefix: true,
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,8 @@ class _DatabaseMigrationViewState extends State<DatabaseMigrationView> {
|
||||||
Uint8List? avatarSvg;
|
Uint8List? avatarSvg;
|
||||||
if (oldContact.avatarSvg != null) {
|
if (oldContact.avatarSvg != null) {
|
||||||
avatarSvg = Uint8List.fromList(
|
avatarSvg = Uint8List.fromList(
|
||||||
gzip.encode(utf8.encode(oldContact.avatarSvg!)));
|
gzip.encode(utf8.encode(oldContact.avatarSvg!)),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
await twonlyDB.contactsDao.insertContact(
|
await twonlyDB.contactsDao.insertContact(
|
||||||
ContactsCompanion(
|
ContactsCompanion(
|
||||||
|
|
|
||||||
23
pubspec.yaml
23
pubspec.yaml
|
|
@ -76,25 +76,22 @@ dependencies:
|
||||||
web_socket_channel: ^3.0.1
|
web_socket_channel: ^3.0.1
|
||||||
|
|
||||||
dependency_overrides:
|
dependency_overrides:
|
||||||
|
|
||||||
flutter_secure_storage_darwin:
|
|
||||||
git:
|
|
||||||
url: https://github.com/juliansteenbakker/flutter_secure_storage.git
|
|
||||||
ref: a06ead81809c900e7fc421a30db0adf3b5919139 # from develop
|
|
||||||
path: flutter_secure_storage_darwin/
|
|
||||||
|
|
||||||
flutter_android_volume_keydown:
|
|
||||||
git:
|
|
||||||
url: https://github.com/yenchieh/flutter_android_volume_keydown.git
|
|
||||||
branch: fix/lStar-not-found-error
|
|
||||||
|
|
||||||
# hardcoding the mirror mode of the VideCapture to MIRROR_MODE_ON_FRONT_ONLY
|
|
||||||
camera_android_camerax:
|
camera_android_camerax:
|
||||||
# path: ../flutter-packages/packages/camera/camera_android_camerax
|
# path: ../flutter-packages/packages/camera/camera_android_camerax
|
||||||
git:
|
git:
|
||||||
url: https://github.com/otsmr/flutter-packages.git
|
url: https://github.com/otsmr/flutter-packages.git
|
||||||
path: packages/camera/camera_android_camerax
|
path: packages/camera/camera_android_camerax
|
||||||
ref: aef58af205a5f3ce6588a5c59bb2e734aab943f0
|
ref: aef58af205a5f3ce6588a5c59bb2e734aab943f0
|
||||||
|
flutter_android_volume_keydown:
|
||||||
|
git:
|
||||||
|
url: https://github.com/yenchieh/flutter_android_volume_keydown.git
|
||||||
|
branch: fix/lStar-not-found-error
|
||||||
|
flutter_secure_storage_darwin:
|
||||||
|
git:
|
||||||
|
url: https://github.com/juliansteenbakker/flutter_secure_storage.git
|
||||||
|
ref: a06ead81809c900e7fc421a30db0adf3b5919139 # from develop
|
||||||
|
path: flutter_secure_storage_darwin/
|
||||||
|
# hardcoding the mirror mode of the VideCapture to MIRROR_MODE_ON_FRONT_ONLY
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
build_runner: ^2.4.15
|
build_runner: ^2.4.15
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue