Skip to content

Commit acfe8f6

Browse files
authored
Merge pull request #93 from Nealyang/master
fix:refactor bug
2 parents 9237ef5 + 84560c0 commit acfe8f6

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

ios/Runner.xcodeproj/project.pbxproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
1111
333E5DAE7FC10AC69FEC26C0 /* libPods-Runner.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DDA792F029EDD7A11295D192 /* libPods-Runner.a */; };
1212
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
13-
2D5378261FAA1A9400D5DBA9 /* flutter_assets in Resources */ = {isa = PBXBuildFile; fileRef = 2D5378251FAA1A9400D5DBA9 /* flutter_assets */; };
1413
3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; };
1514
3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
1615
9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; };
@@ -41,7 +40,6 @@
4140
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
4241
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
4342
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
44-
2D5378251FAA1A9400D5DBA9 /* flutter_assets */ = {isa = PBXFileReference; lastKnownFileType = folder; name = flutter_assets; path = Flutter/flutter_assets; sourceTree = SOURCE_ROOT; };
4543
3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = "<group>"; };
4644
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
4745
7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
@@ -92,7 +90,6 @@
9290
children = (
9391
3B80C3931E831B6300D905FE /* App.framework */,
9492
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
95-
2D5378251FAA1A9400D5DBA9 /* flutter_assets */,
9693
9740EEBA1CF902C7004384FC /* Flutter.framework */,
9794
9740EEB21CF90195004384FC /* Debug.xcconfig */,
9895
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
@@ -209,7 +206,6 @@
209206
files = (
210207
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
211208
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
212-
2D5378261FAA1A9400D5DBA9 /* flutter_assets in Resources */,
213209
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
214210
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
215211
);

lib/utils/example_code_parser.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// found in the LICENSE file.
1010

1111
import 'dart:async';
12-
import '../routers/application.dart';
12+
import 'package:flutter_go/routers/application.dart';
1313
import 'package:flutter/services.dart';
1414
import 'package:url_launcher/url_launcher.dart';
1515
import 'package:flutter/material.dart';

lib/widgets/components/LIst/AnimatedList/demo.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
import 'package:flutter/material.dart';
4-
import './model.dart';
4+
import 'package:flutter_go/widgets/components/LIst/AnimatedList/model.dart';
55

66
class AnimatedListFullDefault extends StatefulWidget {
77
AnimatedListFullDefault({Key key, this.parent}) : super(key: key);

lib/widgets/components/Scroll/CustomScrollView/demo.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
* @Last Modified time: 2018-12-20 14:06:31
66
*/
77
import 'package:flutter/material.dart';
8-
import './product_list.dart';
8+
import 'package:flutter_go/widgets/components/Scroll/CustomScrollView/product_list.dart';
9+
910

1011
class CustomScrollViewDemo extends StatelessWidget {
1112
Widget _buildItem(BuildContext context, ProductItem product) {

lib/widgets/elements/Frame/Spacing/SliverPadding/sliverpadding_demo.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
* @Last Modified time: 2018-11-28 20:36:17
66
*/
77
import 'package:flutter/material.dart';
8-
import './product_list.dart';
8+
import 'package:flutter_go/widgets/components/Scroll/CustomScrollView/product_list.dart';
9+
910

1011
class SliverPaddingDemo extends StatelessWidget {
1112

0 commit comments

Comments
 (0)