It's funny to see the gradient in the title bar, contrasting with the bland borderless-sea-of-whiteness of the rest of the UI.<p>> FilesUwp.Package_0.5.0.0_x64.zip 54.4 MB<p>Nearly 55MB, <i>compressed</i>, for something that attempts to mimic some of the functionality of the regular explorer.exe, is quite frankly ridiculous. I don't have a system to check right now, but I believe even latest Windows 10 has an explorer.exe < 5MB (uncompressed), and it certainly seems to have a lot more functionality than this one. A peek at the code gives a hint as to why... the first file I look at is this<p><a href="https://github.com/duke7553/files-uwp/blob/master/Files%20UWP/Filesystem/ItemViewModel.cs" rel="nofollow">https://github.com/duke7553/files-uwp/blob/master/Files%20UW...</a><p>and the first thing I see is not exactly confidence-inspiring:<p><pre><code> if(tabInstance.AlwaysPresentCommands.isEnabled == true)
{
tabInstance.AlwaysPresentCommands.isEnabled = true;
}
else
{
tabInstance.AlwaysPresentCommands.isEnabled = false;
}
</code></pre>
...WTF.<p>It seems that everything "UWP" I come across follows the same trend: a lot of code, a lot of resource consumption, some flashy "modern" UI, yet very little in the way of actual functionality.