how to create 2 text in 1 Raw

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

Post a Comment

0 Comments