mirror of
https://github.com/git-touch/git-touch
synced 2024-12-16 18:28:51 +01:00
fix: remove background color for ink effect
This commit is contained in:
parent
27f4bbc690
commit
ddcd39c438
@ -207,7 +207,6 @@ class RepoScreen extends StatelessWidget {
|
||||
borderView1,
|
||||
Container(
|
||||
padding: const EdgeInsets.all(_languageBarPadding),
|
||||
color: PrimerColors.white,
|
||||
child: ClipRRect(
|
||||
borderRadius: BorderRadius.circular(2),
|
||||
child: SizedBox(
|
||||
|
@ -126,7 +126,6 @@ class UserScreen extends StatelessWidget {
|
||||
|
||||
return Container(
|
||||
padding: EdgeInsets.all(10),
|
||||
color: PrimerColors.white,
|
||||
child: SingleChildScrollView(
|
||||
scrollDirection: Axis.horizontal,
|
||||
reverse: true,
|
||||
|
@ -66,8 +66,8 @@ class Link extends StatelessWidget {
|
||||
color: bgColor ?? Colors.white,
|
||||
child: InkWell(
|
||||
child: child,
|
||||
splashColor:
|
||||
theme == AppThemeType.cupertino ? Colors.transparent : null,
|
||||
// splashColor:
|
||||
// theme == AppThemeType.cupertino ? Colors.transparent : null,
|
||||
onTap: () => _onTap(context, theme),
|
||||
),
|
||||
),
|
||||
|
@ -77,7 +77,6 @@ class RepoItem extends StatelessWidget {
|
||||
Widget build(BuildContext context) {
|
||||
var widget = Container(
|
||||
padding: EdgeInsets.all(10),
|
||||
color: PrimerColors.white,
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
|
@ -18,7 +18,6 @@ class UserItem extends StatelessWidget {
|
||||
Widget build(BuildContext context) {
|
||||
final widget = Container(
|
||||
padding: EdgeInsets.all(10),
|
||||
color: PrimerColors.white,
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
|
Loading…
Reference in New Issue
Block a user