Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ElevatedButton(
- style: ButtonStyle(
- backgroundColor: WidgetStateProperty.all(
- ProjectColors.primaryColor,
- ),
- padding: WidgetStateProperty.all(EdgeInsets.all(5)),
- textStyle: WidgetStateProperty.all(
- TextStyle(
- fontSize: 14,
- color: ProjectColors.white,
- fontWeight: FontWeight.w500,
- ),
- ),
- ),
- onPressed: () {},
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- spacing: 6,
- children: [
- SvgPicture.asset(
- "assets/images/download.svg",
- colorFilter: ColorFilter.mode(
- ProjectColors.white,
- BlendMode.srcIn,
- ),
- ),
- Text(
- "Download Funding Summary",
- style: GoogleFonts.poppins(
- fontWeight: FontWeight.w500,
- fontSize: 14,
- color: ProjectColors.white,
- ),
- ),
- ],
- ),
- ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement