pull/5/head
Lucas Delanier 2 years ago
parent 7d4fa4283c
commit 3fba223360

Binary file not shown.

Before

Width:  |  Height:  |  Size: 265 KiB

After

Width:  |  Height:  |  Size: 261 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 265 KiB

After

Width:  |  Height:  |  Size: 260 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 264 KiB

After

Width:  |  Height:  |  Size: 257 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 261 KiB

After

Width:  |  Height:  |  Size: 256 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 264 KiB

After

Width:  |  Height:  |  Size: 261 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 256 KiB

After

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 265 KiB

After

Width:  |  Height:  |  Size: 257 KiB

@ -146,7 +146,9 @@ class ProfileWidget extends StatelessWidget {
height: 80, height: 80,
width: 80, width: 80,
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.purple, image: DecorationImage(
image: AssetImage("assets/images/image_user_orange.png"),
fit: BoxFit.cover),
borderRadius: BorderRadius.all(Radius.circular(100)), borderRadius: BorderRadius.all(Radius.circular(100)),
), ),
), ),

@ -25,8 +25,9 @@ class ProfilPodiumWidget extends StatelessWidget {
width: this.isfirst == 1 ? 65 : 50, width: this.isfirst == 1 ? 65 : 50,
height: this.isfirst == 1 ? 65 : 50, height: this.isfirst == 1 ? 65 : 50,
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.red, image: DecorationImage(
border: Border.all(width: 2.0, color: const Color(0xFFFFFFFF)), image: AssetImage("assets/images/image_user_red.png"),
fit: BoxFit.cover),
borderRadius: BorderRadius.all(Radius.circular(70)), borderRadius: BorderRadius.all(Radius.circular(70)),
), ),
), ),
@ -112,7 +113,9 @@ class ProfilListWidget extends StatelessWidget {
height: 40, height: 40,
decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.all(Radius.circular(70)), borderRadius: BorderRadius.all(Radius.circular(70)),
color: Colors.grey, image: DecorationImage(
image: AssetImage("assets/images/image_user_cyan.png"),
fit: BoxFit.cover),
), ),
), ),
Padding( Padding(

@ -173,7 +173,9 @@ class ProfilPicture extends StatelessWidget {
height: 25, height: 25,
width: 25, width: 25,
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.blue, image: DecorationImage(
image: AssetImage("assets/images/image_user_green.png"),
fit: BoxFit.cover),
borderRadius: BorderRadius.all(Radius.circular(20)), borderRadius: BorderRadius.all(Radius.circular(20)),
), ),
); );

Loading…
Cancel
Save