mirror of
https://github.com/git-touch/git-touch
synced 2025-03-05 19:57:42 +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,
|
borderView1,
|
||||||
Container(
|
Container(
|
||||||
padding: const EdgeInsets.all(_languageBarPadding),
|
padding: const EdgeInsets.all(_languageBarPadding),
|
||||||
color: PrimerColors.white,
|
|
||||||
child: ClipRRect(
|
child: ClipRRect(
|
||||||
borderRadius: BorderRadius.circular(2),
|
borderRadius: BorderRadius.circular(2),
|
||||||
child: SizedBox(
|
child: SizedBox(
|
||||||
|
@ -126,7 +126,6 @@ class UserScreen extends StatelessWidget {
|
|||||||
|
|
||||||
return Container(
|
return Container(
|
||||||
padding: EdgeInsets.all(10),
|
padding: EdgeInsets.all(10),
|
||||||
color: PrimerColors.white,
|
|
||||||
child: SingleChildScrollView(
|
child: SingleChildScrollView(
|
||||||
scrollDirection: Axis.horizontal,
|
scrollDirection: Axis.horizontal,
|
||||||
reverse: true,
|
reverse: true,
|
||||||
|
@ -66,8 +66,8 @@ class Link extends StatelessWidget {
|
|||||||
color: bgColor ?? Colors.white,
|
color: bgColor ?? Colors.white,
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
child: child,
|
child: child,
|
||||||
splashColor:
|
// splashColor:
|
||||||
theme == AppThemeType.cupertino ? Colors.transparent : null,
|
// theme == AppThemeType.cupertino ? Colors.transparent : null,
|
||||||
onTap: () => _onTap(context, theme),
|
onTap: () => _onTap(context, theme),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -77,7 +77,6 @@ class RepoItem extends StatelessWidget {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
var widget = Container(
|
var widget = Container(
|
||||||
padding: EdgeInsets.all(10),
|
padding: EdgeInsets.all(10),
|
||||||
color: PrimerColors.white,
|
|
||||||
child: Row(
|
child: Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
|
@ -18,7 +18,6 @@ class UserItem extends StatelessWidget {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final widget = Container(
|
final widget = Container(
|
||||||
padding: EdgeInsets.all(10),
|
padding: EdgeInsets.all(10),
|
||||||
color: PrimerColors.white,
|
|
||||||
child: Row(
|
child: Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
|
Loading…
x
Reference in New Issue
Block a user