修改无水波纹TabBar实现

This commit is contained in:
toly
2020-10-27 13:43:30 +08:00
parent e2a2e40434
commit e9cd9e9171
126 changed files with 370 additions and 1705 deletions

View File

@@ -16,25 +16,25 @@ import 'package:flutter/material.dart';
class CustomStack extends StatelessWidget {
@override
Widget build(BuildContext context) {
Widget yellowBox = Container(
var yellowBox = Container(
color: Colors.yellow,
height: 100,
width: 100,
);
Widget redBox = Container(
var redBox = Container(
color: Colors.red,
height: 90,
width: 90,
);
Widget greenBox = Container(
var greenBox = Container(
color: Colors.green,
height: 80,
width: 80,
);
Widget cyanBox = Container(
var cyanBox = Container(
color: Colors.cyanAccent,
height: 70,
width: 70,