Flutter UI基礎 分割線效果實現

2021-10-08 16:47:56 字數 781 閱讀 7320

1.height:分割線widget的高,不是分割線本身效果的高,可以達到兩個widget 之間margin的效果

2.indent:分割線左邊縮排長度

3.color:分割線的顏色

4.**示例

[

container( height: 65.0,),

divider(height: 1.0,indent: 60.0,color: colors.red,),

container( height: 65.0, ),

],

1.新建乙個不帶child widget 的裝飾容盒子,只使用邊框引數,相當於乙個沒有高度的空白盒子

2.**示例

decoratedbox(

decoration:boxdecoration(

border:border.all(color: colors.grey[200],width: 1.0)

),),

container(

decoration: boxdecoration(color: colors.white, boxshadow: [

boxshadow(

color: colors.grey[300],

),]),

listview的分割線

listview中每個item項之間都有分割線,設定android footerdividersenabled表示是否顯示分割線,此屬性預設為true。1.不顯示分割線只要在listview控制項中新增android footerdividersenabled false 即可。html view ...

Android 虛線分割線

drawable下新建乙個虛線的xml,dash line.xml 然後再布局引用就ok了。樓主,你的這個問題我遇到過,並且用另一種方式解決了。首先告訴你,listview的分割線不能設定為虛線,你也知道關於它的兩個屬性 android divider ffcc00 或者android divide...

補全cell分割線

if cell respondstoselector selector setseparatorinset if cell respondstoselector selector setpreservessuperviewlayoutmargins if cell respondstoselecto...