ElevatedButton
Row( mainAxisAlignment: MainAxisAlignment.start, // बाईं ओर लाने के लिए children: [ Padding( padding: const EdgeInsets.symmetric(horizontal: 20.0), child: Text( "CREATE NEW", style: TextStyle( color: Colors.white, fontSize: 16, fontWeight: FontWeight.bold, ), ), ), SizedBox(width: 10), // दो टेक्स्ट के बीच गैप Text( "PROJECT", style: TextStyle( color: Colors.white, fontSize: 16, fontWeight: FontWeight.bold, ), ), ], ),
0 Comments