如何使第二个文本与第一个文本对齐。代码摘录在下面

                            Padding(
                            padding: EdgeInsets.only(top: 20, bottom: 20, left: 10),
                            child: Column(
                              children: [
                                Container(
                                  child: Text(
                                    document.data()['Product Title'],
                                    style: TextStyle(
                                        color: Colors.black
                                    ),
                                  ),
                                ),
                                SizedBox(height: 10,),
                                Container(
                                  child: Text(
                                    document.data()['Product Price'],
                                    style: TextStyle(
                                        color: Colors.black,
                                    ),
                                  ),
                                ),
                                Container(
                                  decoration: BoxDecoration(
                                      color: Palette.mainColor,
                                      borderRadius: BorderRadius.circular(8)
                                  ),
                                ),
                              ],
                            ),
                          ),
这就是
flutter - 如何为这两个文本设置相同的对齐方式-LMLPHP

最佳答案

设置列crossAxisAlignment:CrossAxisAlignment.start

关于flutter - 如何为这两个文本设置相同的对齐方式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/64333922/

10-12 03:27