mirror of
https://github.com/git-touch/git-touch
synced 2024-12-15 09:56:15 +01:00
30 lines
706 B
Dart
30 lines
706 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:git_flux/screens/screens.dart';
|
|
|
|
class Avatar extends StatelessWidget {
|
|
final String login;
|
|
final String url;
|
|
|
|
Avatar(this.login, this.url);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Material(
|
|
child: InkWell(
|
|
splashColor: Colors.transparent,
|
|
onTap: () {
|
|
Navigator.of(context).push(
|
|
CupertinoPageRoute(builder: (_) => UserScreen(login)),
|
|
);
|
|
},
|
|
child: CircleAvatar(
|
|
backgroundColor: Colors.transparent,
|
|
backgroundImage: NetworkImage(url),
|
|
radius: 18,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|