Skip to content
#

Flutter

flutter logo

Flutter is an open source mobile application development SDK created by Google. It is used to develop applications for Android and iOS, as well as being the primary method of creating applications for Google Fuchsia.

Here are 11,290 public repositories matching this topic...

Flutter 超完整的开源项目,功能丰富,适合学习和日常使用。GSYGithubApp系列的优势:我们目前已经拥有Flutter、Weex、ReactNative、kotlin 四个版本。 功能齐全,项目框架内技术涉及面广,完成度高,持续维护,配套文章,适合全面学习,对比参考。跨平台的开源Github客户端App,更好的体验,更丰富的功能,旨在更好的日常管理和维护个人Github,提供更好更方便的驾车体验Σ( ̄。 ̄ノ)ノ。同款Weex版本 : https://github.com/CarGuo/GSYGithubAppWeex 、同款React Native版本 : https://github.com/CarGuo/GSYGithubApp 、原生 kotlin 版本 https://github.com/CarGuo/GSYGithubAppKotlin

  • Updated May 27, 2020
  • Dart
a616781689
a616781689 commented Nov 28, 2019

看了fish-redux的todoList demo,发现里面连接全局状态的方法是使用visitor

visitor: (String path, Page<Object, dynamic> page) {
      /// 只有特定的范围的 Page 才需要建立和 AppStore 的连接关系
      /// 满足 Page<T> ,T 是 GlobalBaseState 的子类
      if (page.isTypeof<GlobalBaseState>()) {
        /// 建立 AppStore 驱动 PageStore 的单向数据连接
        /// 1. 参数1 AppStore
        /// 2. 参数2 当 AppStore.state 变化时, PageStore.state 该如何变化
     
jangya
jangya commented Nov 14, 2019

Web socket as data Provider


todos_repository_simple explains nicely about the benefits of using repository as singleton. But no where it's mentioned how to handle the web sockets.

How can I use web socket (webSocket and fileStorage) instead of rest (webClient and fileStorage) ?

Some key points between web socket and rest.

  • The name itself signify socket
itkfm
itkfm commented Apr 27, 2020

The accept button on offer pages sent to customers is pretty confusing when IN is set to German.

While not completely false, “zustimmen“ is clearly the wrong word to use here (it's rather equivalent to “agree”). The button should rather say “Angebot annehmen”. (Please note that using only the verb “Annehmen” would very likely still cause the very same confusion!)

Why does this happen?

:octocat:🔥 👍 🌟 Flutter all you want.Flutter install,flutter samples,Flutter projects,Flutter plugin,Flutter problems,Dart codes,etc.Flutter安装和配置,Flutter开发遇到的难题,Flutter示例代码和模板,Flutter项目实战,Dart语言学习示例代码。

  • Updated Apr 18, 2020
  • Dart
liugang1104
liugang1104 commented Oct 21, 2019

一个FLBFlutterViewContainer装载多个flutter页面,里面由Flutter Navigator来进行路由管理。
`
@override
Widget build(BuildContext context) {
PushListener listener = new PushListener();
return MaterialApp(
title: 'Flutter Boost example',
builder: FlutterBoost.init(),
navigatorObservers: [listener],
home: Container(),
)

class PushListener extends NavigatorObserver {
@

appwrite
eldadfux
eldadfux commented Apr 13, 2020

Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression.
https://github.com/google/brotl

AlexanderArendar
AlexanderArendar commented Dec 27, 2019

In the release notes for 4.0.0 I've found this useful piece:

The new create/update callbacks are lazy-loaded, which means they are called the first time the value is read instead of the first time the provider is created.

If this is undesired, you can disable lazy-loading by passing lazy: false to the provider of your choice:

FutureProvider(
  create: (_) async => doSomeHttpReques

Released May 2017

Organization
flutter
Website
flutter.dev
Wikipedia
Wikipedia

Related Topics

dart flutter-apps flutter-plugin
You can’t perform that action at this time.