-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SuperEditor][SuperReader][iOS][Android] - Long-press content selecti…
- Loading branch information
1 parent
24aef3e
commit c54bbb2
Showing
25 changed files
with
3,196 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Super Editor Demo (debug)" type="FlutterRunConfigurationType" factoryName="Flutter"> | ||
<option name="filePath" value="$PROJECT_DIR$/example/lib/main_super_editor.dart" /> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Super Reader Demo (debug)" type="FlutterRunConfigurationType" factoryName="Flutter"> | ||
<option name="filePath" value="$PROJECT_DIR$/example/lib/main_super_reader.dart" /> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import 'package:example/demos/example_editor/example_editor.dart'; | ||
import 'package:flutter/material.dart'; | ||
import 'package:logging/logging.dart'; | ||
import 'package:super_editor/super_editor.dart'; | ||
|
||
/// A demo of a [SuperEditor] experience. | ||
/// | ||
/// This demo only shows a single, typical [SuperEditor]. To see a variety of | ||
/// demos, see the main demo experience in this project. | ||
void main() { | ||
initLoggers(Level.FINEST, { | ||
// editorScrollingLog, | ||
// editorGesturesLog, | ||
// longPressSelectionLog, | ||
// editorImeLog, | ||
// editorImeDeltasLog, | ||
// editorKeyLog, | ||
// editorOpsLog, | ||
// editorLayoutLog, | ||
// editorDocLog, | ||
// editorStyleLog, | ||
// textFieldLog, | ||
// editorUserTagsLog, | ||
// contentLayersLog, | ||
}); | ||
|
||
runApp( | ||
MaterialApp( | ||
home: Scaffold( | ||
body: ExampleEditor(), | ||
), | ||
), | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import 'package:example/demos/super_reader/demo_super_reader.dart'; | ||
import 'package:flutter/material.dart'; | ||
|
||
/// A demo of a [SuperReader] experience. | ||
/// | ||
/// This demo only shows a single, typical [SuperReader]. To see a variety of | ||
/// demos, see the main demo experience in this project. | ||
void main() { | ||
runApp( | ||
MaterialApp( | ||
home: Scaffold( | ||
body: SuperReaderDemo(), | ||
), | ||
), | ||
); | ||
} |
Oops, something went wrong.