How to set same alignment for these two text

Kobby Discount

How do I make the second text align with the first text. Excerpt of the code is below

                            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)
                                  ),
                                ),
                              ],
                            ),
                          ),

This is how it is at the moment

enter image description here

M.M.Hasibuzzaman

set the column crossAxisAlignment: CrossAxisAlignment.start

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to set two image and text in same line

From Dev

How to force two element alignment in the same line bootstrap model

From Dev

How to set vertical alignment for mdRadioButton directive of Angular Material related to text?

From Dev

How to set Placeholder text alignment as center in windows phone 8.1 Textbox

From Dev

How do I set alignment on DataGridTextColumn cell text using code

From Dev

How to set Placeholder text alignment as center in windows phone 8.1 Textbox

From Dev

How to set vertical alignment for mdRadioButton directive of Angular Material related to text?

From Dev

How to set alignment of text in cell of a dynamically generated table in ASP?

From Dev

text alignment of two span elements

From Dev

set uibutton text alignment storyboard

From Dev

How to set two property value using groovy in the same time from a text file

From Dev

How to set two divs with same heights in JQuery

From Dev

How to set two divs with same heights in JQuery

From Dev

How to set two block on the same line by middle?

From Dev

How to set same text size in android app?

From Dev

How to set alignment for UIScrollView in ios

From Dev

How to change Autogeneratedcolumn text alignment

From Dev

How to set the same value for two inputs for two models in a Rails form

From Java

How can I force Gradle to set the same version for two dependencies?

From Dev

How to set two local variables with the same value in sql server?

From Dev

How to get nth set of two rows that have the same ID

From Dev

How to set two values for same definition in enum, C#

From Dev

EF 6 how to set two foreign keys to same table

From Dev

How to set two divs side-by-side with the same height?

From Dev

How can I set different sensitivities for two mice at the same time?

From Dev

How can I set different sensitivities for two mice at the same time?

From Dev

How to align two text boxes on same line with CSS

From Dev

How to provide some space between two lines of same text in css

From Dev

Javascript, How to show two value into same input type text field?

Related Related

  1. 1

    How to set two image and text in same line

  2. 2

    How to force two element alignment in the same line bootstrap model

  3. 3

    How to set vertical alignment for mdRadioButton directive of Angular Material related to text?

  4. 4

    How to set Placeholder text alignment as center in windows phone 8.1 Textbox

  5. 5

    How do I set alignment on DataGridTextColumn cell text using code

  6. 6

    How to set Placeholder text alignment as center in windows phone 8.1 Textbox

  7. 7

    How to set vertical alignment for mdRadioButton directive of Angular Material related to text?

  8. 8

    How to set alignment of text in cell of a dynamically generated table in ASP?

  9. 9

    text alignment of two span elements

  10. 10

    set uibutton text alignment storyboard

  11. 11

    How to set two property value using groovy in the same time from a text file

  12. 12

    How to set two divs with same heights in JQuery

  13. 13

    How to set two divs with same heights in JQuery

  14. 14

    How to set two block on the same line by middle?

  15. 15

    How to set same text size in android app?

  16. 16

    How to set alignment for UIScrollView in ios

  17. 17

    How to change Autogeneratedcolumn text alignment

  18. 18

    How to set the same value for two inputs for two models in a Rails form

  19. 19

    How can I force Gradle to set the same version for two dependencies?

  20. 20

    How to set two local variables with the same value in sql server?

  21. 21

    How to get nth set of two rows that have the same ID

  22. 22

    How to set two values for same definition in enum, C#

  23. 23

    EF 6 how to set two foreign keys to same table

  24. 24

    How to set two divs side-by-side with the same height?

  25. 25

    How can I set different sensitivities for two mice at the same time?

  26. 26

    How can I set different sensitivities for two mice at the same time?

  27. 27

    How to align two text boxes on same line with CSS

  28. 28

    How to provide some space between two lines of same text in css

  29. 29

    Javascript, How to show two value into same input type text field?

HotTag

Archive