flutter 因包裹而无法出现水波问题

在外层包裹Material

Material(
                color: Color(0xff16AD90),
                child: InkWell(
                  onTap: (){},
                  child: Container(
                    child: SizedBox(
                      width: 335,
                      height: 50,
                      child: Container(
                        child: Center(
                          child: Text(
                            '立即领卡',
                            style: TextStyle(
                                fontSize: 18,
                                color: Colors.white
                            ),
                          ),
                        ),
                      ),
                    ),
                  ),
                ),
              )

你可能感兴趣的:(flutter 因包裹而无法出现水波问题)