Browse Source

修改各种间隔

master
zdc 5 years ago
parent
commit
26725ca35b
3 changed files with 5 additions and 5 deletions
  1. +3
    -3
      android/app/build.gradle
  2. +1
    -1
      lib/chat/ChatPageItem.dart
  3. +1
    -1
      lib/chat/input_bar.dart

+ 3
- 3
android/app/build.gradle View File

@@ -56,9 +56,9 @@ android {
// manifestPlaceholders = [ // manifestPlaceholders = [
// AMAP_KEY : "1fd4e93e3b4b13747da41f484c955fe2", /// 高德地图key // AMAP_KEY : "1fd4e93e3b4b13747da41f484c955fe2", /// 高德地图key
// ] // ]
ndk {
abiFilters 'armeabi-v7a'
}
// ndk {
// abiFilters 'armeabi-v7a'
// }
multiDexEnabled true multiDexEnabled true
manifestPlaceholders = [ manifestPlaceholders = [
JPUSH_PKGNAME : 'com.cyhd.henhoandroid', JPUSH_PKGNAME : 'com.cyhd.henhoandroid',


+ 1
- 1
lib/chat/ChatPageItem.dart View File

@@ -714,7 +714,7 @@ class _ChatPageItemState extends State<ChatPageItem>
mainAxisAlignment: MainAxisAlignment.end, mainAxisAlignment: MainAxisAlignment.end,
children: <Widget>[ children: <Widget>[
MsgStateWidget(widget.msg), MsgStateWidget(widget.msg),
SizedBox(width: 3),
SizedBox(width: 1),
_msgLayout(context, widget.msg), _msgLayout(context, widget.msg),
SizedBox(width: 10), SizedBox(width: 10),
Column( Column(


+ 1
- 1
lib/chat/input_bar.dart View File

@@ -398,7 +398,7 @@ class InputBarState extends State<InputBar>
child: Column( child: Column(
children: <Widget>[ children: <Widget>[
Container( Container(
padding: EdgeInsets.symmetric(horizontal: 7, vertical: 7),
padding: EdgeInsets.symmetric(horizontal: 7, vertical: 3),
alignment: Alignment.topCenter, alignment: Alignment.topCenter,
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.white, color: Colors.white,


Loading…
Cancel
Save