build static method
Returns the Widgets of this ImagesSection.
Implementation
static List<Widget> build() {
return [
Headline(
subtitle: _downloadButton('head_0.svg', prefix: 'logo'),
top: false,
child: const InteractiveLogo(),
),
Headline(
headline: 'background_light.svg',
subtitle: _downloadButton('background_light.svg'),
child: const SvgImage.asset(
'assets/images/background_light.svg',
height: 300,
fit: BoxFit.cover,
),
),
Headline(
headline: 'background_dark.svg',
subtitle: _downloadButton('background_dark.svg'),
child: const SvgImage.asset(
'assets/images/background_dark.svg',
height: 300,
fit: BoxFit.cover,
),
),
];
}