An error occurred while loading commit signatures
  • Tanay Neotia's avatar
    Add support for image insertion on Android (#110052) · 0e22aca7
    Tanay Neotia authored
    * Add support for image insertion on Android
    
    * Fix checks
    
    * Use proper Dart syntax on snippet
    
    * Specify type annotation on list
    
    * Fix nits, add some asserts, and improve example code
    
    * Add missing import
    
    * Fix nullsafety error
    
    * Fix nullsafety error
    
    * Remove reference to contentCommitMimeTypes in docs
    
    * Fix nits
    
    * Fix warnings and import
    
    * Add test for content commit in editable_text_test.dart
    
    * Check that URIs are equal in test
    
    * Fix nits and rename functions / classes to be more self-explanatory
    
    * Fix failing debugFillProperties tests
    
    * Add empty implementation to `insertContent` in TextInputClient
    
    * Tweak documentation slightly
    
    * Improve docs for contentInsertionMimeTypes and fix assert
    
    * Rework contentInsertionMimeType asserts
    
    * Add test for onContentInserted example
    
    * Switch implementation to a configuration class for more granularity in setting mime types
    
    * Fix nits
    
    * Improve docs and fix doc tests
    
    * Fix more nits (LongCatIsLooong)
    
    * Fix failing tests
    
    * Make parameters (guaranteed by platform to be non-nullable) non-nullable
    
    * Fix analysis issues
    0e22aca7

Flutter Examples

This directory contains several examples of using Flutter. To run an example, use flutter run inside that example's directory. See the getting started guide to install the flutter tool.

For additional samples, see the flutter/samples repo.

Available examples include:

Notes

Note on Gradle wrapper files in .gitignore:

Gradle wrapper files should normally be checked into source control. The example projects don't do that to avoid having several copies of the wrapper binary in the Flutter repo. Instead, the Gradle wrapper is injected by Flutter tooling, and the wrapper files are .gitignore'd to avoid making the Flutter repository dirty as a side effect of running the examples.