Skip to content

Commit

Permalink
🐛 Updated search
Browse files Browse the repository at this point in the history
  • Loading branch information
LNA-DEV committed Jul 2, 2023
1 parent d3725db commit b398d8c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions lib/Widgets/search.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@ import 'package:flutter/material.dart';
class Search extends StatelessWidget {
Search({
Key? key,
required this.appTitle,
required this.getProfile,
}) : super(key: key);

final searchTextEditingController = TextEditingController();
final String appTitle;
final Function(String profileId) getProfile;

@override
Expand Down Expand Up @@ -53,11 +51,12 @@ class Search extends StatelessWidget {
transitionsBuilder:
(context, animation, animation2, widget) =>
SlideTransition(
position: Tween(
begin: const Offset(1.0, 0.0),
end: const Offset(0.0, 0.0),
).animate(animation),
child: widget),
position: Tween(
begin: const Offset(1.0, 0.0),
end: const Offset(0.0, 0.0),
).animate(animation),
child: widget,
),
),
);
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: fedodo_general
description: A flutter package which contains general components of the Fedodo-UIs.
version: 1.6.4
version: 1.6.5
homepage: https://fedodo.org

environment:
Expand Down

0 comments on commit b398d8c

Please sign in to comment.