mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
Maintenance for provider_counter (#165)
This commit is contained in:
@@ -16,7 +16,7 @@ match any new language/SDK features, etc.).
|
|||||||
| place_tracker | | |
|
| place_tracker | | |
|
||||||
| platform_design | johnpryan | 10/7/19 |
|
| platform_design | johnpryan | 10/7/19 |
|
||||||
| platform_view_swift | redbrogdon | 10/7/19 |
|
| platform_view_swift | redbrogdon | 10/7/19 |
|
||||||
| provider_counter | | |
|
| provider_counter | redbrogdon | 11/21/19 |
|
||||||
| provider_shopper | | |
|
| provider_shopper | | |
|
||||||
| veggieseasons | | |
|
| veggieseasons | | |
|
||||||
| web | | |
|
| web | | |
|
||||||
|
|||||||
1
provider_counter/.gitignore
vendored
1
provider_counter/.gitignore
vendored
@@ -55,6 +55,7 @@
|
|||||||
**/ios/.generated/
|
**/ios/.generated/
|
||||||
**/ios/Flutter/App.framework
|
**/ios/Flutter/App.framework
|
||||||
**/ios/Flutter/Flutter.framework
|
**/ios/Flutter/Flutter.framework
|
||||||
|
**/ios/Flutter/Flutter.podspec
|
||||||
**/ios/Flutter/Generated.xcconfig
|
**/ios/Flutter/Generated.xcconfig
|
||||||
**/ios/Flutter/app.flx
|
**/ios/Flutter/app.flx
|
||||||
**/ios/Flutter/app.zip
|
**/ios/Flutter/app.zip
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
include: package:pedantic/analysis_options.1.7.0.yaml
|
include: package:pedantic/analysis_options.1.8.0.yaml
|
||||||
|
|
||||||
analyzer:
|
analyzer:
|
||||||
strong-mode:
|
strong-mode:
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2019 The Chromium Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ packages:
|
|||||||
name: provider
|
name: provider
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.1"
|
version: "3.1.0+1"
|
||||||
quiver:
|
quiver:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|||||||
@@ -11,13 +11,13 @@ dependencies:
|
|||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
|
|
||||||
provider: ^2.0.1
|
provider: ^3.1.0+1
|
||||||
cupertino_icons: ^0.1.2
|
cupertino_icons: ^0.1.2
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
pedantic: ^1.7.0
|
pedantic: ^1.8.0+1
|
||||||
|
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
// Copyright 2019 The Chromium Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|||||||
Reference in New Issue
Block a user