Diego Alexandre

Results 13 comments of Diego Alexandre

Hi @thilankascentic , you can use the "valuePrepareFunction" parameter in your columns : ```javascript CusName: { title: 'Customer Name', valuePrepareFunction: (data) => { return data.name; }, }, ```

Is there any fix to make it working on Angular 6?

Changing the import solved my issue. from: `import { CardModule } from 'ngx-card/ngx-card';` To: `import { CardModule } from 'ngx-card';`

same error here on a variety of android devices. I've put a lot of logs to send to crashlytics and I got none of them. And then I realized that...

Force the 'platform' on my ios/Podfile worked for me. `platform :ios, '9.0'`

HI, I've figured out the issue while setting the style 15. It happens because it's requiring to set the decoration border radius. Setting the decoration on your PersistentTabView will fix...

This project is using the Flutter 2.10.5. The app builds on my machine and emulator, but Codemagic deploy was failing since the flutter_advanced_drawer 1.3.6 was released. (only worked after force...

Hi Guys, I came up to the same issue here. I've been trying to do some workaround but with no success. My first idea was to hide the caption inside...

> If you want to control aspects like this hosting your own HTML5 video or streaming it is the only way. Vimeo and YouTube will always want to put their...

I see on the [documentation](https://docs.rollbar.com/docs/custom-log-messages) that is possible to send the "scope" in other languages (JS, Ruby) but not in Flutter `Rollbar.scope({person: {id: "123"}}).info("User logged in");`