'Transition with futter move object

how i can move my object with transform for start position object to a X position value i tried this code but not work

                  new Row(
                    mainAxisAlignment: MainAxisAlignment.spaceBetween,
                    children: [
       for(var i = 0; i > 0;i++)
      {
      
        Transform.translate(
          child: Text(
              'Woolha.com',
              style: TextStyle(color: Colors.teal, fontSize: 20)
          ),
          offset: Offset(
             i
            ,
              0),
        )
      }
],
                  ),


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source