MatPag

Results 19 comments of MatPag

They say here: https://developer.android.com/studio/releases/sdk-tools that the default `tools` folder is discontinued. Then here: https://developer.android.com/studio/command-line#tools-sdk they say that we should use the new `cmdline-tools` folder. But in the [sdkmanager](https://developer.android.com/studio/command-line/sdkmanager) page, they...

By the way, this is the url to download the new tools: https://dl.google.com/android/repository/commandlinetools-mac-6514223_latest.zip, which is exactly the same version of the one listed here https://developer.android.com/studio#cmdline-tools So the link at least...

![test](https://cloud.githubusercontent.com/assets/4432213/6698624/7b31ab9a-ccfa-11e4-819d-1c87a10ea9f9.jpg) I have tried with your code, and like you can see in the image in devices 4.0+, the toolbar height change between landscape and portrait mode, it's not aligned...

Yes, it would be great

-1 And these are my reasons: 1- selection should be cleared after a page change 2- select all should select only the items in the current page (but this doesn't...

You can just copy the file in the internal memory, then open that file. Something like this: ``` static Future getAssetByName(String sourceName) async { var sampleData = await rootBundle.load("assets/$sourceName"); final...

You are probably passing a wrong name to the `getAssetByName()` method Remember that if your file is at `assets/hello/hello.pdf` you need to call the method in this way: `getAssetByName("hello/hello.pdf")` Then...

Same problem for me I've solved this way: https://github.com/flutter/flutter/issues/17749#issuecomment-615279343

You need to use: `true` which is the default. Otherwise the indicator will have the same width of the content (in your case the text width). You can read more...