apesic / rpncalc

A simple RPN (Reverse Polish Notation) calculator app built using Flutter
GNU General Public License v3.0
27 stars 1 forks source link

calculation lost when app goes background/killed #16

Open tleydxdy opened 1 year ago

tleydxdy commented 1 year ago

my phone don't have a lot of memory so background apps constantly gets killed. this causes issue with the calculator since when I switch back all the numbers entered are lost

apesic commented 1 year ago

Thanks for the report--I was worried about this possibility when I first wrote the app so it's useful to know that it is indeed a problem in the wild (I think my phone keeps it alive long enough I don't notice this shortcoming too often).

I think some sort of simple persistence should be easy enough to implement, I'll plan on including that in the next version.