Skip to content

Commit e85ebb3

Browse files
author
jld3103
authored
Merge pull request #597 from ToasterUwU/master
formating and typo
2 parents 6aa86ea + 59aee5a commit e85ebb3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
This [unofficial](https://github.com/go-flutter-desktop/go-flutter/issues/191#issuecomment-511384007) project brings Flutter to the desktop through the power of [Go](http://golang.org/) and [GLFW](https://github.com/go-gl/glfw).
1515

16-
The flutter engine itself doesn't know how to deal with desktop platforms _(eg handling mouse/keyboard input)_. Instead, it exposes an abstraction layer for whatever platform to implement. This project implements the [Flutter's Embedding API](https://github.com/flutter/flutter/wiki/Custom-Flutter-Engine-Embedders) using a single code base that runs on Windows, macOS, and Linux. For rendering, [**GLFW**](https://github.com/go-gl/glfw) fits the job because it provides the right abstractions over the OpenGL's Buffer/Mouse/Keyboard for each platform.
16+
The flutter engine itself doesn't know how to deal with desktop platforms _(eg handling mouse/keyboard input)_. Instead, it exposes an abstraction layer for whatever platform to implement. This project implements the [Flutter's Embedding API](https://github.com/flutter/flutter/wiki/Custom-Flutter-Engine-Embedders) using a single code base that runs on Windows, macOS, and Linux. For rendering, [**GLFW**](https://github.com/go-gl/glfw) fits the job because it provides the right abstractions over the OpenGL's Buffer/Mouse/Keyboard for each platform.
1717

1818
The choice of [Golang](https://github.com/golang/go) comes from the fact that it has the same tooling on every platform. Plus Golang is a great language because it keeps everything simple and readable, which makes it easy to build cross-platform plugins.
1919

@@ -39,7 +39,7 @@ If you want more in-depth information about go-flutter, read the [wiki](https://
3939
- BinaryMessageCodec, BinaryMessageChannel
4040
- StandardMessageCodec, JSONMessageCodec
4141
- StandardMethodCodec, **MethodChannel**
42-
- Plugin detection for [suppoted plugins](https://github.com/go-flutter-desktop/go-flutter/wiki/Create-a-hover-compatible-plugin)
42+
- Plugin detection for [supported plugins](https://github.com/go-flutter-desktop/go-flutter/wiki/Create-a-hover-compatible-plugin)
4343
- Importable as Go library into custom projects
4444
- UTF-8 Text input
4545
- Clipboard copy & paste
@@ -65,7 +65,7 @@ A separate repository contains example Flutter apps that also run on the desktop
6565
## Plugins
6666

6767
Some popular plugins are already implemented over at [github.com/go-flutter-desktop/plugins](https://github.com/go-flutter-desktop/plugins).
68-
If you have implemented a plugin that you would like to share, feel free to open a PR on the plugins repository!
68+
If you have implemented a plugin that you would like to share, feel free to open a PR on the plugins repository!
6969

7070
For a detailed tutorial on how to create a plugin, read the [wiki](https://github.com/go-flutter-desktop/go-flutter/wiki/Implement-a-plugin).
7171

0 commit comments

Comments
 (0)