Tommie N. Carter, Jr.

Results 12 comments of Tommie N. Carter, Jr.

Hi, Medium has a short article on [how to add a Carthage Framework ](https://medium.com/@filippotosetto/how-to-create-a-carthage-framework-8d9d65f98ac2#.sx467dylf) with some files from your existing project. The SPM seems a bit tougher as it only...

Probably need to make sure that the scheme is shared and `.xcodeproj/xcshareddata/xcschemes `is added and pushed to github. Navigating to Product/Scheme/Manage Schemes in Xcode 9.3 and then selecting the shared...

One way to use the public database is to create user subscriptions for objects stored on that database. When invoking the subscription be sure to set the notification to nil...

I haven't given this much thought, just off the top of my head. Could modeling something like the estimated size behavior of UITableView/UICollectionView serve as a method of handling the...

In Xcode 11.3, I had to apply the Presentation fullscreen setting onto specific View Controllers in order for the segue to complete successfully. Making sure to use the custom segues...

Seems like this might be a good place to start ([source](https://pub.dev/documentation/http/latest/http/MultipartRequest-class.html)): ``` var uri = Uri.parse('https://example.com/create'); var request = http.MultipartRequest('POST', uri) ..fields['user'] = '[email protected]' ..files.add(await http.MultipartFile.fromPath( 'package', 'build/package.tar.gz', contentType: MediaType('application',...

I am debugging the issue a bit and found that it appears to be related to either `less` or `css` style. I am still looking a the code base to...

Hi LiXinLiang, I think if you could get this working in the new Docks feature it would be very useful. At least one big project (nuclide) is using your component...

This issue causes build to crash when running Carthage. While I've fixed it manually, it seems too trivial to warrant a PR... Let me know if you'd like someone to...

I am not sure that I understand. You want to collapse the directory and remove all subfiles from the dom tree at the same time? I would imagine that you...