You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
484 B
18 lines
484 B
import 'package:flutter/widgets.dart'; |
|
import 'package:flutter_svg/flutter_svg.dart'; |
|
import 'package:neon/l10n/localizations.dart'; |
|
|
|
class NextcloudLogo extends StatelessWidget { |
|
const NextcloudLogo({ |
|
super.key, |
|
}); |
|
|
|
@override |
|
Widget build(final BuildContext context) => SvgPicture.asset( |
|
'assets/logo_nextcloud.svg', |
|
package: 'neon', |
|
width: 100, |
|
height: 100, |
|
semanticsLabel: AppLocalizations.of(context).nextcloudLogo, |
|
); |
|
}
|
|
|