Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version 1.0.0 #53

Merged
merged 27 commits into from
Feb 7, 2022
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9b5fe05
Break some stuff by renaming minimal to custom in HeaderBar
prateekmedia Jan 20, 2022
533f33a
Apply suggestions from review
prateekmedia Jan 24, 2022
d2bedab
Update: change icon parameter to enum
prateekmedia Jan 24, 2022
78402ec
Use popover package to render popover
prateekmedia Jan 26, 2022
5c1177b
Use flutter svg to render window buttons for now
prateekmedia Jan 27, 2022
a460725
Update popover package
prateekmedia Jan 27, 2022
c32519e
Add isTransparent parameter
prateekmedia Jan 27, 2022
d30f851
Add AdwSwitch and switch to popover_gtk
prateekmedia Jan 29, 2022
010e4f8
Rebase AdwSwith on CupertinoSwitch
prateekmedia Jan 29, 2022
0e2d8ee
Fix warning
prateekmedia Jan 29, 2022
0ebd3fb
Add ViewSwitcher badge
prateekmedia Jan 29, 2022
1ebe367
Apply suggestions from review
prateekmedia Jan 30, 2022
1962c4d
Apply Suggestions from review
prateekmedia Jan 30, 2022
0380d79
Update CHANGELOG and README
prateekmedia Jan 31, 2022
f014b1b
Update DOCS
prateekmedia Jan 31, 2022
4dc0449
Update README docs
prateekmedia Jan 31, 2022
35176ef
Update Docs
prateekmedia Jan 31, 2022
6cb027e
Fix README
prateekmedia Jan 31, 2022
ab94e68
Update badge
prateekmedia Jan 31, 2022
81cc396
Update AboutWindow docs
prateekmedia Feb 1, 2022
9b430be
Update AdwAboutWindow
prateekmedia Feb 1, 2022
71517b2
Update AboutWindow and Window Buttons
prateekmedia Feb 6, 2022
dd8968d
Update Screenshot
prateekmedia Feb 6, 2022
20c167b
Update Badge
prateekmedia Feb 6, 2022
02465a4
Add desktop multi window package
prateekmedia Feb 6, 2022
a61b1a6
Update Spacing
prateekmedia Feb 7, 2022
03a5d99
Update Screenshot
prateekmedia Feb 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update AboutWindow docs
prateekmedia committed Feb 1, 2022
commit 81cc39633c0fdf3632eba3f048c21460827c02bc
24 changes: 24 additions & 0 deletions lib/src/widgets/adw/about_window.dart
Original file line number Diff line number Diff line change
@@ -9,13 +9,37 @@ class AdwAboutWindow extends StatelessWidget {
this.endIcon,
this.width = 360,
this.headerbar,
this.copyright,
this.issueTrackerLink,
this.license,
this.credits,
}) : super(key: key);

/// The HeaderBar for About Window, defaults to transparent [AdwHeaderBar]
final AdwHeaderBar? headerbar;

/// The width of the about window dialog
final double width;

/// The app icon to show in the about window
final Widget appIcon;

/// The end icon of The Credits and Legal button,
/// defaults to chevron_right Material Icon
final Widget? endIcon;

/// The Copyright notice for Legal Screen
final String? copyright;

/// The link for the issue tracker
final String? issueTrackerLink;

/// The License for the app
final String? license;

/// The content's of Credits screen
final List<AdwPreferencesGroup>? credits;

@override
Widget build(BuildContext context) {
return FutureBuilder<PackageInfo>(