adar2378 / tab_indicator_styler

Add beautiful and trending tab indicators directly to your default Flutter TabBar
MIT License
57 stars 20 forks source link

a 1dp space line after of tab #1

Closed TomVista closed 4 years ago

TomVista commented 4 years ago

image

column(
childen:[
TabBar(
        controller: tabController,
        indicatorWeight: 0,
        indicatorPadding: EdgeInsets.all(0),
        indicator: RectangularIndicator(color: Color(0xff486F8D)),
        tabs: [TimeAndLocationTabBarItem(), TimeAndLocationTabBarItem(), TimeAndLocationTabBarItem()]),
Container(
              padding: EdgeInsets.all(0),
              margin: EdgeInsets.all(0),
              width: 200,
              height: 200,
              color: Color(0xff486F8D),
              child: TabBarView(
                controller: tabController,
                children: [
                  Container(
                    width: 10,
                    height: 10,
                  ), Container(
                    width: 10,
                    height: 10,
                  ),
                  Container(
                    width: 10,
                    height: 10,
                  )
                ],
              ),
            )
]
)
TomVista commented 4 years ago

not the tab error, i change the android emulator, the line missing 🐶