You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			504 B
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			20 lines
		
	
	
		
			504 B
		
	
	
	
		
			Dart
		
	
import 'package:flutter/material.dart';
 | 
						|
import 'package:flutter_svg/svg.dart';
 | 
						|
 | 
						|
class AppLogo extends StatelessWidget {
 | 
						|
  AppLogo({Key? key}) : super(key: key);
 | 
						|
 | 
						|
  @override
 | 
						|
  Widget build(BuildContext context) {
 | 
						|
    // TODO: implement build
 | 
						|
    return Row(children: [
 | 
						|
      SvgPicture.asset(
 | 
						|
                      "assets/mohemm_logo.svg",
 | 
						|
                      height: 100,
 | 
						|
                      width: 100,
 | 
						|
                      alignment: Alignment.centerRight,
 | 
						|
                    ),
 | 
						|
    ],);
 | 
						|
  }
 | 
						|
}
 |