sm: (min-width: 480px)md: (min-width: 768px)lg: (min-width: 992px)xl: (min-width: 1280px)
GSButton(style: GSStyle(bg: $GSColors.green400,sm: GSStyle(bg: $GSColors.black),),onPressed: () {},child: const Row(children: [GSButtonText(text: "Add"),GSButtonIcon(icon: Icons.add)],),),
GSFlex(mainAxisAlignment: MainAxisAlignment.center,crossAxisAlignment: CrossAxisAlignment.center,style: GSStyle(direction: Axis.vertical,md: GSStyle(direction: Axis.horizontal),),children: [GSBox(style: GSStyle(height: 150,width: 150,bg: Colors.red,),),GSBox(style: GSStyle(height: 150,width: 150,bg: Colors.green,),),GSBox(style: GSStyle(height: 150,width: 150,bg: Colors.blue,),),],),