I have 2 questions.
I'm going to answer my questions based on All Suhu answers here and based on my experience asking uncle google.
mr @CopsOnRoad has give his answer on the comment column. and it really works. thanks :) my answer:
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Image.asset("images/line.png", width: 30,),
SizedBox(width: 5,),
Image.asset("images/Wa.png", width: 30,),
SizedBox(width: 5,),
Image.asset("images/IG.png", width: 30,),
SizedBox(width: 5,),
Image.asset("images/Twitter.png", width: 30,),
SizedBox(width: 5,),
Image.asset("images/Fb.png", width: 30,),
],
I use an image asset and give them a size to resize. but this is only dumb way. the great way you can see mr. Cops answer above.
Icon(Icons.star, color: Colors.red)my answer is by using ImageIcon. Its makes an image just like an icon. here the code.
ImageIcon(AssetImage("images/Free Ongkir.png")),
because I still cant change the "star" into an image asset then I used ImageIcon. you can change the size also. by adding "size" behind the first ")".
hope this could help you :)