aligning the text in flutter

Code Example - aligning the text in flutter

                
                        child: Text(
' I am text !!!',
 textAlign: TextAlign.center)
                    
                
 

flutter text left align

                        
                                Text(
  'Hello World!',
  textAlign: TextAlign.left,
),
                            
                        
 

Related code examples