-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update text and button colors feature added
- Loading branch information
1 parent
c8d6946
commit e25e557
Showing
16 changed files
with
153 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
## 0.0.1 | ||
|
||
* initial Release | ||
|
||
## 0.0.2 | ||
* we can update colors & style of button and text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
class ImageResouce { | ||
static const android2= "assets/images/android_2.png"; | ||
static const android3= "assets/images/android_3.png"; | ||
static const android4= "assets/images/android_4.png"; | ||
static const android2 = "assets/images/android_2.png"; | ||
static const android3 = "assets/images/android_3.png"; | ||
static const android4 = "assets/images/android_4.png"; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
import 'package:app_walk_through_example/second_screen.dart'; | ||
import 'package:app_walk_through_example/main.dart'; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
|
||
import 'my_widget_tester.dart'; | ||
|
||
void main(){ | ||
void main() { | ||
testWidgets("should have AppWalkThrough widget", (widgetTester) async { | ||
await widgetTester.pumpWidget(const MyWidgetTester(screen: SecondScreen())); | ||
final textFinder = find.text("second Screen"); | ||
expect(textFinder, findsOneWidget); | ||
}); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
import 'package:app_walk_through/app_walk_through.dart'; | ||
import 'package:app_walk_through_example/walk_through_screen.dart'; | ||
import 'package:app_walk_through_example/main.dart'; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
|
||
import 'my_widget_tester.dart'; | ||
|
||
void main(){ | ||
void main() { | ||
testWidgets("should have AppWalkThrough widget", (widgetTester) async { | ||
await widgetTester.pumpWidget(const MyWidgetTester(screen: WalkThroughScreen())); | ||
await widgetTester | ||
.pumpWidget(const MyWidgetTester(screen: WalkThroughScreen())); | ||
final appWalkThroughFinder = find.byType(AppWalkThrough); | ||
expect(appWalkThroughFinder, findsOneWidget); | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
/// this is appWalkThrough data model which will be helpful to define app short descriptions. | ||
/// assign appWalkThrough item [title] text, | ||
/// assign appWalkThrough item [description] text & | ||
/// assign assets [image] string of appWalkThrough item | ||
class AppWalkThroughDataModel { | ||
String? title; | ||
String? description; | ||
String? image; | ||
AppWalkThroughDataModel({this.title, this.description, this.image}); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.