Deva Palanisamy

Results 7 comments of Deva Palanisamy

> flutter_twitter_login: > git: git://github.com/eudangeld/flutter_twitter_login.git If I add the above lines in pubspec, I get the below error. Error on line 24, column 8 of pubspec.yaml: Invalid version constraint: Could...

Thanks @leocavalcante It works

I was getting the same issue with below code. `position= await locator.GetPositionAsync(TimeSpan.FromTicks(Constants.GPS_TIME_OUT));` Then I changed the code like this. `position= await locator.GetPositionAsync(TimeSpan.FromSeconds(Constants.GPS_TIME_OUT));` Now I get the position without any issues....