mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 12:48:41 +00:00
release version
This commit is contained in:
parent
fba84caf62
commit
6c867ca8b5
3 changed files with 16 additions and 4 deletions
|
|
@ -50,6 +50,15 @@
|
||||||
<key>UISupportedInterfaceOrientations</key>
|
<key>UISupportedInterfaceOrientations</key>
|
||||||
<array>
|
<array>
|
||||||
<string>UIInterfaceOrientationPortrait</string>
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
|
</array>
|
||||||
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
</array>
|
</array>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
|
||||||
|
|
@ -111,14 +111,17 @@ class _ChatListViewState extends State<ChatListView> {
|
||||||
await apiProvider.connect();
|
await apiProvider.connect();
|
||||||
await Future.delayed(Duration(seconds: 1));
|
await Future.delayed(Duration(seconds: 1));
|
||||||
},
|
},
|
||||||
child: ListView(
|
child: ListView.builder(
|
||||||
restorationId: 'chat_list_view',
|
restorationId: 'chat_list_view',
|
||||||
children: contacts.map((user) {
|
itemCount: contacts.length,
|
||||||
|
itemBuilder: (BuildContext context, int index) {
|
||||||
|
final user = contacts[index];
|
||||||
return UserListItem(
|
return UserListItem(
|
||||||
|
key: ValueKey(user.userId),
|
||||||
user: user,
|
user: user,
|
||||||
maxTotalMediaCounter: maxTotalMediaCounter,
|
maxTotalMediaCounter: maxTotalMediaCounter,
|
||||||
);
|
);
|
||||||
}).toList(),
|
},
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ description: "Send pictures to friends in real time and be sure you are the only
|
||||||
# Prevent accidental publishing to pub.dev.
|
# Prevent accidental publishing to pub.dev.
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
version: 0.0.14+14
|
version: 0.0.16+16
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.6.0
|
sdk: ^3.6.0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue