parent
86fc5924b5
commit
3537388d43
@ -0,0 +1,18 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:aku_community_manager/tools/screen_tool.dart';
|
||||
|
||||
class BusinessCard extends StatefulWidget {
|
||||
BusinessCard({Key key}) : super(key: key);
|
||||
|
||||
@override
|
||||
_BusinessCardState createState() => _BusinessCardState();
|
||||
}
|
||||
|
||||
class _BusinessCardState extends State<BusinessCard> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
margin: EdgeInsets.symmetric(horizontal: 32.w),
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Reference in new issue