Skip to content
This repository was archived by the owner on Jun 8, 2026. It is now read-only.

Commit f21f074

Browse files
authored
Archive Notice
1 parent 1c3f05f commit f21f074

1 file changed

Lines changed: 4 additions & 123 deletions

File tree

README.md

Lines changed: 4 additions & 123 deletions
Original file line numberDiff line numberDiff line change
@@ -1,124 +1,5 @@
1-
<a href="https://flutter.dev/">
2-
<h1 align="center">
3-
<picture>
4-
<source media="(prefers-color-scheme: dark)" srcset="https://storage.googleapis.com/cms-storage-bucket/6e19fee6b47b36ca613f.png">
5-
<img alt="Flutter" src="https://storage.googleapis.com/cms-storage-bucket/c823e53b3a1a7b0d36a9.png">
6-
</picture>
7-
</h1>
8-
</a>
1+
This repository was used to test out:
2+
* Merging flutter/engine into flutter/flutter
3+
* Implementing Merge Queues
94

10-
[![Flutter CI Status](https://flutter-dashboard.appspot.com/api/public/build-status-badge?repo=flutter)](https://flutter-dashboard.appspot.com/#/build?repo=flutter)
11-
[![Discord badge][]][Discord instructions]
12-
[![Twitter handle][]][Twitter badge]
13-
[![codecov](https://codecov.io/gh/flutter/flutter/branch/master/graph/badge.svg?token=11yDrJU2M2)](https://codecov.io/gh/flutter/flutter)
14-
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/5631/badge)](https://bestpractices.coreinfrastructure.org/projects/5631)
15-
[![SLSA 1](https://slsa.dev/images/gh-badge-level1.svg)](https://slsa.dev)
16-
17-
Flutter is Google's SDK for crafting beautiful, fast user experiences for
18-
mobile, web, and desktop from a single codebase. Flutter works with existing
19-
code, is used by developers and organizations around the world, and is free and
20-
open source.
21-
22-
## Documentation
23-
24-
* [Install Flutter](https://flutter.dev/get-started/)
25-
* [Flutter documentation](https://docs.flutter.dev/)
26-
* [Development wiki](./docs/README.md)
27-
* [Contributing to Flutter](https://github.com/flutter/flutter/blob/main/CONTRIBUTING.md)
28-
29-
For announcements about new releases, follow the
30-
[flutter-announce@googlegroups.com](https://groups.google.com/forum/#!forum/flutter-announce)
31-
mailing list. Our documentation also tracks [breaking
32-
changes](https://docs.flutter.dev/release/breaking-changes) across releases.
33-
34-
## Terms of service
35-
36-
The Flutter tool may occasionally download resources from Google servers. By
37-
downloading or using the Flutter SDK, you agree to the Google Terms of Service:
38-
https://policies.google.com/terms
39-
40-
For example, when installed from GitHub (as opposed to from a prepackaged
41-
archive), the Flutter tool will download the Dart SDK from Google servers
42-
immediately when first run, as it is used to execute the `flutter` tool itself.
43-
This will also occur when Flutter is upgraded (e.g. by running the `flutter
44-
upgrade` command).
45-
46-
## About Flutter
47-
48-
We think Flutter will help you create beautiful, fast apps, with a productive,
49-
extensible and open development model, whether you're targeting iOS or Android,
50-
web, Windows, macOS, Linux or embedding it as the UI toolkit for a platform of
51-
your choice.
52-
53-
### Beautiful user experiences
54-
55-
We want to enable designers to deliver their full creative vision without being
56-
forced to water it down due to limitations of the underlying framework.
57-
Flutter's [layered architecture] gives you control over every pixel on the
58-
screen and its powerful compositing capabilities let you overlay and animate
59-
graphics, video, text, and controls without limitation. Flutter includes a full
60-
[set of widgets][widget catalog] that deliver pixel-perfect experiences whether
61-
you're building for iOS ([Cupertino]) or other platforms ([Material]), along with
62-
support for customizing or creating entirely new visual components.
63-
64-
<p align="center"><img src="https://github.com/flutter/website/blob/main/src/content/assets/images/docs/homepage/reflectly-hero-600px.png?raw=true" alt="Reflectly hero image"></p>
65-
66-
### Fast results
67-
68-
Flutter is fast. It's powered by hardware-accelerated 2D graphics
69-
libraries like [Skia] (which underpins Chrome and Android) and
70-
[Impeller]. We architected Flutter to
71-
support glitch-free, jank-free graphics at the native speed of your device.
72-
73-
Flutter code is powered by the world-class [Dart platform], which enables
74-
compilation to 32-bit and 64-bit ARM machine code for iOS and Android,
75-
JavaScript and WebAssembly for the web, as well as Intel x64 and ARM
76-
for desktop devices.
77-
78-
<p align="center"><img src="https://github.com/flutter/website/blob/main/src/content/assets/images/docs/homepage/dart-diagram-small.png?raw=true" alt="Dart diagram"></p>
79-
80-
### Productive development
81-
82-
Flutter offers [stateful hot reload][Hot reload], allowing you to make changes to your code
83-
and see the results instantly without restarting your app or losing its state.
84-
85-
[![Hot reload animation][]][Hot reload]
86-
87-
### Extensible and open model
88-
89-
Flutter works with any development tool (or none at all), and also includes
90-
editor plug-ins for both [Visual Studio Code] and [IntelliJ / Android Studio].
91-
Flutter provides [tens of thousands of packages][Flutter packages] to speed your
92-
development, regardless of your target platform. And accessing other native code
93-
is easy, with support for both FFI ([on Android][Android FFI], [on iOS][iOS FFI],
94-
[on macOS][macOS FFI], and [on Windows][Windows FFI]) as well as
95-
[platform-specific APIs][platform channels].
96-
97-
Flutter is a fully open-source project, and we welcome contributions.
98-
Information on how to get started can be found in our
99-
[contributor guide](CONTRIBUTING.md).
100-
101-
[flutter.dev]: https://flutter.dev
102-
[Discord instructions]: ./docs/contributing/Chat.md
103-
[Discord badge]: https://img.shields.io/discord/608014603317936148?logo=discord
104-
[Twitter handle]: https://img.shields.io/twitter/follow/flutterdev.svg?style=social&label=Follow
105-
[Twitter badge]: https://twitter.com/intent/follow?screen_name=flutterdev
106-
[layered architecture]: https://docs.flutter.dev/resources/inside-flutter
107-
[architectural overview]: https://docs.flutter.dev/resources/architectural-overview
108-
[widget catalog]: https://flutter.dev/widgets/
109-
[Cupertino]: https://docs.flutter.dev/development/ui/widgets/cupertino
110-
[Material]: https://docs.flutter.dev/development/ui/widgets/material
111-
[Skia]: https://skia.org/
112-
[Dart platform]: https://dart.dev/
113-
[Hot reload animation]: https://github.com/flutter/website/blob/main/src/assets/images/docs/tools/android-studio/hot-reload.gif?raw=true
114-
[Hot reload]: https://docs.flutter.dev/development/tools/hot-reload
115-
[Visual Studio Code]: https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter
116-
[IntelliJ / Android Studio]: https://plugins.jetbrains.com/plugin/9212-flutter
117-
[Flutter packages]: https://pub.dev/flutter
118-
[Android FFI]: https://docs.flutter.dev/development/platform-integration/android/c-interop
119-
[iOS FFI]: https://docs.flutter.dev/development/platform-integration/ios/c-interop
120-
[macOS FFI]: https://docs.flutter.dev/development/platform-integration/macos/c-interop
121-
[Windows FFI]: https://docs.flutter.dev/development/platform-integration/windows/building#integrating-with-windows
122-
[platform channels]: https://docs.flutter.dev/development/platform-integration/platform-channels
123-
[interop example]: https://github.com/flutter/flutter/tree/main/examples/platform_channel
124-
[Impeller]: https://docs.flutter.dev/perf/impeller
5+
It is now archived as that work is done.

0 commit comments

Comments
 (0)