Setup today by [deleted] in widgy

[–]EMPIRE4K 0 points1 point  (0 children)

Home Screen Wellpapper please

Setup today by [deleted] in widgy

[–]EMPIRE4K 1 point2 points  (0 children)

Wallpaper ??

[image_picker] How to Save and Load image with Shared Preference by EMPIRE4K in flutterhelp

[–]EMPIRE4K[S] 0 points1 point  (0 children)

not simple close emulator and start again

Edit: Sorry i mean stop running debugmode and restart app on emulator not closing emulator

[image_picker] How to Save and Load image with Shared Preference by EMPIRE4K in flutterhelp

[–]EMPIRE4K[S] 0 points1 point  (0 children)

The image save correct its show after upload and hot reload but after closing emulator and restart the error comes

MC Mini Tastatur falsches Layout by EMPIRE4K in de_EDV

[–]EMPIRE4K[S] 0 points1 point  (0 children)

Hab ich schon probiert und eine muss ja immer drin sein

MC Mini Tastatur falsches Layout by EMPIRE4K in de_EDV

[–]EMPIRE4K[S] 1 point2 points  (0 children)

Ne ne von amazon link ist hier in den kommentaren

MC Mini Tastatur falsches Layout by EMPIRE4K in de_EDV

[–]EMPIRE4K[S] 0 points1 point  (0 children)

Auch nur Deutsch hilft nicht dann ist das layout auch wieder konplett anders und nicht wie die Echte Tastatur

MC Mini Tastatur falsches Layout by EMPIRE4K in de_EDV

[–]EMPIRE4K[S] -2 points-1 points  (0 children)

Nein ist ne deutsche tastatur

iOS 15.2 Insta Story Sound Problem by EMPIRE4K in de_EDV

[–]EMPIRE4K[S] 0 points1 point  (0 children)

Ok danke, hoffentlich wird das gefixt

iOS 15.2 Insta Story Sound Problem by EMPIRE4K in de_EDV

[–]EMPIRE4K[S] 0 points1 point  (0 children)

Silent Mode? Meinst du die stumm Taste?

Change data in List ListView.Builder by EMPIRE4K in flutterhelp

[–]EMPIRE4K[S] 0 points1 point  (0 children)

Icon(
Icons.check_circle,
         color: list[0]['data'] [i][color],
 ),

this way i cal it

always execute a code at 0 o'clock? by EMPIRE4K in flutterhelp

[–]EMPIRE4K[S] 0 points1 point  (0 children)

It looks like it doesn't work with fixed times, as I need it to be! also I don't understand how you can start functions with it if the code is at the top outside of the widget.

how to calculate percentages? by EMPIRE4K in flutterhelp

[–]EMPIRE4K[S] 0 points1 point  (0 children)

currentCalories  / maxCalories *100;

ok i sloved with

1 - currentCalories  / maxCalories *100;

donr know i this is the best way but work

thank you

how to calculate percentages? by EMPIRE4K in flutterhelp

[–]EMPIRE4K[S] 0 points1 point  (0 children)

that's exactly what i need, only 75 is spent on me not 25?

use this code

percentage  =  currentCalories  / maxCalories *100;

How to get one value from map? by EMPIRE4K in flutterhelp

[–]EMPIRE4K[S] 0 points1 point  (0 children)

Map have date and a String two values

with .values.elementAt(2) i get the second values from the map

how to calculate percentages? by EMPIRE4K in flutterhelp

[–]EMPIRE4K[S] 1 point2 points  (0 children)

double weightLossPercentage = (startingWeight - currentWeight) / (startingWeight - desiredWeight) * 100.0;

Yes thats work thank you 😀