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.
22 lines
510 B
22 lines
510 B
// Flutter imports:
|
|
import 'package:flutter/material.dart';
|
|
|
|
// Project imports:
|
|
import 'package:aku_new_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),
|
|
);
|
|
}
|
|
}
|